summaryrefslogtreecommitdiffstats
path: root/kicker-applets/math/mathapplet.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-05 12:06:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-07 10:48:04 +0900
commit05330e04abbc3e21a39655fe515e58718d229d2d (patch)
tree10b6b693f29d4d6c882b7be59fc2b5bee2a64ffd /kicker-applets/math/mathapplet.cpp
parent0900b7aa951e81a02ce679c1c5d88f09afa3749d (diff)
downloadtdeaddons-05330e04abbc3e21a39655fe515e58718d229d2d.tar.gz
tdeaddons-05330e04abbc3e21a39655fe515e58718d229d2d.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a40b1ca8095d92cbe5876207558663dcab6d1de2)
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*)