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/toggleaction-example.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/toggleaction-example.html') diff --git a/doc/html/toggleaction-example.html b/doc/html/toggleaction-example.html index 38c0e93a1..09af73fcd 100644 --- a/doc/html/toggleaction-example.html +++ b/doc/html/toggleaction-example.html @@ -51,7 +51,7 @@ int main( int argc, char **argv ) TQToolBar * toolbar = new TQToolBar( window ); TQAction * labelonoffaction = new TQAction( window, "labelonoff" ); - labelonoffaction->setToggleAction( TRUE ); + labelonoffaction->setToggleAction( true ); labelonoffaction->setText( "labels on/off" ); labelonoffaction->setAccel( TQt::ALT+TQt::Key_L ); -- cgit v1.2.3