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/iconview-example.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/iconview-example.html') diff --git a/doc/html/iconview-example.html b/doc/html/iconview-example.html index 2208c85b4..9e83215d8 100644 --- a/doc/html/iconview-example.html +++ b/doc/html/iconview-example.html @@ -94,7 +94,7 @@ int main( int argc, char **argv ) for ( unsigned int i = 0; i < 3000; i++ ) { TQIconViewItem *item = new TQIconViewItem( &tqiconview, TQString( "Item %1" ).arg( i + 1 ) ); - item->setRenameEnabled( TRUE ); + item->setRenameEnabled( true ); } tqiconview.setCaption( "TQt Example - Iconview" ); -- cgit v1.2.3