summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-30 19:34:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 16:52:42 +0900
commitd6217929495b3efe271a710147c45de580e9a6dc (patch)
tree867269d4436714d91d0a2be0d77df1896756b524
parentb4216f18f99b3a80acf5905d92dd27bb7be82738 (diff)
downloadtwin-style-machbunt-r14.1.x.tar.gz
twin-style-machbunt-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4r14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9114e91f4ea49d8c01a7910f4d1e6eb13614cdb4)
-rw-r--r--src/MachBunt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MachBunt.cpp b/src/MachBunt.cpp
index 3561a34..8da2a15 100644
--- a/src/MachBunt.cpp
+++ b/src/MachBunt.cpp
@@ -584,7 +584,7 @@ void MachBunt::resizeEvent( TQResizeEvent*)
update( TQRect( TQPoint(4,4), titlebar->geometry().bottomLeft() - TQPoint(1,0) ) );
update( TQRect( titlebar->geometry().topRight(), TQPoint( width() - 4, titlebar->geometry().bottom() ) ) );
// Titlebar needs no paint event
- TQApplication::postEvent( widget(), new TQPaintEvent( titlebar->geometry(), FALSE ) );
+ TQApplication::postEvent( widget(), new TQPaintEvent( titlebar->geometry(), false ) );
}
}
#endif