SVN commit 450306 by rchern:
Compile
M +2 -1 kstviewbox.cpp
--- trunk/extragear/graphics/kst/kst/kstviewbox.cpp #450305:450306
@@ -89,12 +89,13 @@
void KstViewBox::setXRound(int rnd) {
+ int crnd;
if (rnd < 0) {
crnd = 0;
} else if (rnd > 99) {
crnd = 99;
} else {
- crnt = rnd;
+ crnd = rnd;
}
if (_xRound != crnd) {
setDirty();