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/simple-font-demo-example.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/simple-font-demo-example.html') diff --git a/doc/html/simple-font-demo-example.html b/doc/html/simple-font-demo-example.html index 194dd96bb..59ba5677e 100644 --- a/doc/html/simple-font-demo-example.html +++ b/doc/html/simple-font-demo-example.html @@ -120,7 +120,7 @@ private: italicsButton = new TQPushButton( "Italics", this, "pushbutton3" ); - italicsButton->setFont( TQFont( "lucida", 12, TQFont::Bold, TRUE ) ); + italicsButton->setFont( TQFont( "lucida", 12, TQFont::Bold, true ) ); connect( italicsButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( setItalics() ) ); @@ -133,7 +133,7 @@ void Viewer::setDefault() font.setPointSize( 24 ); font.setWeight( TQFont::Bold ); - font.setUnderline( TRUE ); + font.setUnderline( true ); greetings->setFont( font ); @@ -154,7 +154,7 @@ void Viewer::setItalics() TQFont font( "Tokyo" ); font.setPointSize( 32 ); font.setWeight( TQFont::Bold ); - font.setItalic( TRUE ); + font.setItalic( true ); greetings->setFont( font ); -- cgit v1.2.3