summaryrefslogtreecommitdiffstats
path: root/kturtle/src/canvas.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-07 18:23:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-07 18:29:13 +0900
commit35149ce0bd6a7e9a315a395291ed4b59499b63cf (patch)
tree8aa872ca24b4d1c6269367a838ccf426e627e190 /kturtle/src/canvas.cpp
parentdfc74d769f6ce85f3b6ed46fb4af1229d1de4426 (diff)
downloadtdeedu-35149ce0bd6a7e9a315a395291ed4b59499b63cf.tar.gz
tdeedu-35149ce0bd6a7e9a315a395291ed4b59499b63cf.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kturtle/src/canvas.cpp')
-rw-r--r--kturtle/src/canvas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kturtle/src/canvas.cpp b/kturtle/src/canvas.cpp
index 57bbc923..8564d6ae 100644
--- a/kturtle/src/canvas.cpp
+++ b/kturtle/src/canvas.cpp
@@ -403,7 +403,7 @@ void Canvas::line(double xa, double ya, double xb, double yb)
xb + translation.x() * canvasWidth, yb + translation.y() * canvasHeight);
if (cutLoop == true)
{
- // kdDebug(0)<<"Canvas::line(): cutLoop is set to TRUE! ABORT LINE MISSION"<<endl;
+ // kdDebug(0)<<"Canvas::line(): cutLoop is set to true! ABORT LINE MISSION"<<endl;
return;
}
}
@@ -418,7 +418,7 @@ bool Canvas::endlessLoop(TQPoint begin, TQPoint end)
// this is to break the horrible endless loop bug that i cannot fix...
// i need more simple reproductions of this bug to really find it
// for now i say it is something with TQCanvas but i'm likely wrong on thisone
- // kdDebug(0)<<"Canvas::endlessLoop TRUE!!"<<endl;
+ // kdDebug(0)<<"Canvas::endlessLoop true!!"<<endl;
return true;
}
else