summaryrefslogtreecommitdiffstats
path: root/kicker-applets/math/mathapplet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker-applets/math/mathapplet.cpp')
-rw-r--r--kicker-applets/math/mathapplet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kicker-applets/math/mathapplet.cpp b/kicker-applets/math/mathapplet.cpp
index f38bcb2..5c1410f 100644
--- a/kicker-applets/math/mathapplet.cpp
+++ b/kicker-applets/math/mathapplet.cpp
@@ -139,14 +139,14 @@ void MathApplet::useDegrees() {
mContextMenu->setItemChecked(0, true);
mContextMenu->setItemChecked(1, false);
Parser dummy;
- dummy.setAngleMode(1);
+ dummy.setAngleMode(true);
}
void MathApplet::useRadians() {
mContextMenu->setItemChecked(0, false);
mContextMenu->setItemChecked(1, true);
Parser dummy;
- dummy.setAngleMode(0);
+ dummy.setAngleMode(false);
}
void MathApplet::resizeEvent(TQResizeEvent*)