summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-30 19:34:01 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 16:50:43 +0900
commit76af48dfc86c469631e2b431cf634eb4059befa5 (patch)
tree259e7b6120c3c06643a682dfbe3a2adf1a7f3b55
parent69f660522ae994edc333ee7343b4799dd844812f (diff)
downloadtde-style-polyester-76af48dfc86c469631e2b431cf634eb4059befa5.tar.gz
tde-style-polyester-76af48dfc86c469631e2b431cf634eb4059befa5.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rwxr-xr-xclient/polyester.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/polyester.cpp b/client/polyester.cpp
index 747d543..c3c04cb 100755
--- a/client/polyester.cpp
+++ b/client/polyester.cpp
@@ -1536,7 +1536,7 @@ void polyesterClient::paintEvent(TQPaintEvent* e) {
textPixmap = TQPixmap(textRect.width(), textRect.height());
textPixmap.fill(TQColor(0,0,0));
- textPixmap.setMask( textPixmap.createHeuristicMask(TRUE) );
+ textPixmap.setMask( textPixmap.createHeuristicMask(true) );
tempPainter.begin(&textPixmap);