From 4d618f818dc0406196ab93943df1bfc691f44a13 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 26 Mar 2025 21:03:24 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro (cherry picked from commit b0e57710fb765a6060971ec0db21bbed462f7da9) --- plugins/gui-quickbar/buttonflowlayout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/gui-quickbar/buttonflowlayout.cpp') diff --git a/plugins/gui-quickbar/buttonflowlayout.cpp b/plugins/gui-quickbar/buttonflowlayout.cpp index 0b49564..c94101b 100644 --- a/plugins/gui-quickbar/buttonflowlayout.cpp +++ b/plugins/gui-quickbar/buttonflowlayout.cpp @@ -86,7 +86,7 @@ int ButtonFlowLayout::heightForWidth( int w ) const if ( cached_width != w ) { //Not all C++ compilers support "mutable" yet: ButtonFlowLayout * mthis = (ButtonFlowLayout*)this; - int h = mthis->doLayout( TQRect(0,0,w,0), TRUE ); + int h = mthis->doLayout( TQRect(0,0,w,0), true ); mthis->cached_hfw = h; mthis->cached_width = w; return h; @@ -101,7 +101,7 @@ void ButtonFlowLayout::addItem( TQLayoutItem *item) bool ButtonFlowLayout::hasHeightForWidth() const { - return TRUE; + return true; } TQSize ButtonFlowLayout::sizeHint() const -- cgit v1.2.3