diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/chart-optionsform-cpp.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-rename/true-false-4.tar.gz tqt-rename/true-false-4.zip |
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/chart-optionsform-cpp.html')
-rw-r--r-- | doc/html/chart-optionsform-cpp.html | 6 |
1 files changed, 3 insertions, 3 deletions
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 <a href="tqlabel.html">TQLabel</a>( "&Chart Type", this ); chartTypeLayout-><a href="tqboxlayout.html#addWidget">addWidget</a>( chartTypeTextLabel ); - chartTypeComboBox = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); + chartTypeComboBox = new <a href="tqcombobox.html">TQComboBox</a>( false, this ); chartTypeComboBox-><a href="tqcombobox.html#insertItem">insertItem</a>( TQPixmap( options_piechart ), "Pie Chart" ); chartTypeComboBox-><a href="tqcombobox.html#insertItem">insertItem</a>( TQPixmap( options_verticalbarchart ), "Vertical Bar Chart" ); @@ -99,7 +99,7 @@ body { background: #ffffff; color: black; } addValuesButtonGroupLayout-><a href="tqlayoutitem.html#setAlignment">setAlignment</a>( TQt::AlignTop ); noRadioButton = new <a href="tqradiobutton.html">TQRadioButton</a>( "&No", addValuesButtonGroup ); - noRadioButton-><a href="tqradiobutton.html#setChecked">setChecked</a>( TRUE ); + noRadioButton-><a href="tqradiobutton.html#setChecked">setChecked</a>( true ); addValuesButtonGroupLayout-><a href="tqboxlayout.html#addWidget">addWidget</a>( noRadioButton ); yesRadioButton = new <a href="tqradiobutton.html">TQRadioButton</a>( "&Yes", addValuesButtonGroup ); @@ -130,7 +130,7 @@ body { background: #ffffff; color: black; } buttonsLayout-><a href="tqboxlayout.html#addItem">addItem</a>( spacer ); okPushButton = new <a href="tqpushbutton.html">TQPushButton</a>( "OK", this ); - okPushButton-><a href="tqpushbutton.html#setDefault">setDefault</a>( TRUE ); + okPushButton-><a href="tqpushbutton.html#setDefault">setDefault</a>( true ); buttonsLayout-><a href="tqboxlayout.html#addWidget">addWidget</a>( okPushButton ); cancelPushButton = new <a href="tqpushbutton.html">TQPushButton</a>( "Cancel", this ); |