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:24 +0900
commit9114e91f4ea49d8c01a7910f4d1e6eb13614cdb4 (patch)
tree891b0ed5f431cd12deb08f182d894c075b1e98fa
parent6d5cc23895710f15cd3389a744f2102a284f96eb (diff)
downloadtwin-style-machbunt-9114e91f4ea49d8c01a7910f4d1e6eb13614cdb4.tar.gz
twin-style-machbunt-9114e91f4ea49d8c01a7910f4d1e6eb13614cdb4.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/MachBunt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MachBunt.cpp b/src/MachBunt.cpp
index a5e3ec4..355b7e5 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