summaryrefslogtreecommitdiffstats
path: root/kturtle
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 23:24:46 +0900
commitfd06779f93512aa68988b165260941e6d3f1ff0f (patch)
treebb06d03e494a97eae182a18562677e2e5b17bed5 /kturtle
parentf1a4e21e9735931cfb58943bb1a3da4353e14302 (diff)
downloadtdeedu-r14.1.4.tar.gz
tdeedu-r14.1.4.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 35149ce0bd6a7e9a315a395291ed4b59499b63cf)
Diffstat (limited to 'kturtle')
-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