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:51:01 +0900 |
| commit | 52bcee9ebdc9a9f6095a1cb93b205da54a524965 (patch) | |
| tree | 3fca7b6be7368e164f9b76633dd3191fd9d9c103 | |
| parent | a510deff77fe4e502786feb185c2a6c80cfb6544 (diff) | |
| download | tde-style-polyester-52bcee9e.tar.gz tde-style-polyester-52bcee9e.zip | |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 76af48dfc86c469631e2b431cf634eb4059befa5)
| -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); |
