From 76af48dfc86c469631e2b431cf634eb4059befa5 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 30 Mar 2025 19:34:01 +0900 Subject: [PATCH] Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- client/polyester.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);