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/chart-optionsform-cpp.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/chart-optionsform-cpp.html') diff --git a/doc/html/chart-optionsform-cpp.html b/doc/html/chart-optionsform-cpp.html index d9ff27c75..51e43e34c 100644 --- a/doc/html/chart-optionsform-cpp.html +++ b/doc/html/chart-optionsform-cpp.html @@ -63,7 +63,7 @@ body { background: #ffffff; color: black; } 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" ); @@ -99,7 +99,7 @@ body { background: #ffffff; color: black; } addValuesButtonGroupLayout->setAlignment( TQt::AlignTop ); noRadioButton = new TQRadioButton( "&No", addValuesButtonGroup ); - noRadioButton->setChecked( TRUE ); + noRadioButton->setChecked( true ); addValuesButtonGroupLayout->addWidget( noRadioButton ); yesRadioButton = new TQRadioButton( "&Yes", addValuesButtonGroup ); @@ -130,7 +130,7 @@ body { background: #ffffff; color: black; } buttonsLayout->addItem( spacer ); okPushButton = new TQPushButton( "OK", this ); - okPushButton->setDefault( TRUE ); + okPushButton->setDefault( true ); buttonsLayout->addWidget( okPushButton ); cancelPushButton = new TQPushButton( "Cancel", this ); -- cgit v1.2.3