diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-30 19:34:01 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 16:50:43 +0900 |
| commit | 76af48dfc86c469631e2b431cf634eb4059befa5 (patch) | |
| tree | 259e7b6120c3c06643a682dfbe3a2adf1a7f3b55 | |
| parent | 69f660522ae994edc333ee7343b4799dd844812f (diff) | |
| download | tde-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-x | client/polyester.cpp | 2 |
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); |
