From 35ced32e331ee29fda1642616c803637952f5b22 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 30 May 2025 14:27:29 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 1 Signed-off-by: Michele Calgaro (cherry picked from commit a7f1e6e2552d9cdbb3d76bff089db522248b9a24) --- doc/html/tutorial2-09.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/tutorial2-09.html') diff --git a/doc/html/tutorial2-09.html b/doc/html/tutorial2-09.html index 8b454dab8..14c0e82d3 100644 --- a/doc/html/tutorial2-09.html +++ b/doc/html/tutorial2-09.html @@ -44,7 +44,7 @@ apply to all data sets in one place. TQ_OBJECT public: OptionsForm( TQWidget* parent = 0, const char* name = "options form", - bool modal = FALSE, WFlags f = 0 ); + bool modal = false, WFlags f = 0 ); ~OptionsForm() {} TQFont font() const { return m_font; } @@ -120,7 +120,7 @@ vertical box layout.

        chartTypeTextLabel = new TQLabel( "&Chart Type", this );
         chartTypeLayout->addWidget( chartTypeTextLabel );
 
-        chartTypeComboBox = new TQComboBox( FALSE, this );
+        chartTypeComboBox = new TQComboBox( false, this );
         chartTypeComboBox->insertItem( TQPixmap( options_piechart ), "Pie Chart" );
         chartTypeComboBox->insertItem( TQPixmap( options_verticalbarchart ),
                                        "Vertical Bar Chart" );
@@ -165,7 +165,7 @@ know what font the user is using).
         addValuesButtonGroupLayout->setAlignment( TQt::AlignTop );
 
         noRadioButton = new TQRadioButton( "&No", addValuesButtonGroup );
-        noRadioButton->setChecked( TRUE );
+        noRadioButton->setChecked( true );
         addValuesButtonGroupLayout->addWidget( noRadioButton );
 
         yesRadioButton = new TQRadioButton( "&Yes", addValuesButtonGroup );
-- 
cgit v1.2.3