From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/small-table-example-example.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/small-table-example-example.html') diff --git a/doc/html/small-table-example-example.html b/doc/html/small-table-example-example.html index 9515ea06f..1559eba9c 100644 --- a/doc/html/small-table-example-example.html +++ b/doc/html/small-table-example-example.html @@ -71,7 +71,7 @@ int main( int argc, char **argv ) header->setLabel( 0, TQObject::tr( "Tiny" ), 40 ); header->setLabel( 1, TQObject::tr( "Checkboxes" ) ); header->setLabel( 5, TQObject::tr( "Combos" ) ); - table.setColumnMovingEnabled(TRUE); + table.setColumnMovingEnabled(true); TQImage img( qtlogo_xpm ); TQPixmap pix = img.scaleHeight( table.rowHeight(3) ); @@ -82,7 +82,7 @@ int main( int argc, char **argv ) comboEntries << "one" << "two" << "three" << "four"; for ( int i = 0; i < numRows; ++i ){ - TQComboTableItem * item = new TQComboTableItem( &table, comboEntries, FALSE ); + TQComboTableItem * item = new TQComboTableItem( &table, comboEntries, false ); item->setCurrentItem( i % 4 ); table.setItem( i, 5, item ); } -- cgit v1.2.3