summaryrefslogtreecommitdiffstats
path: root/doc/html/chart-optionsform-cpp.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
commitb87533f9904c10f24d6b2e8177c00944e3efe15b (patch)
treec1106a381c851b51e86004698457aef1211b77be /doc/html/chart-optionsform-cpp.html
parent894037c3e68e1573a34183d936171f8cda5085f3 (diff)
downloadtqt-r14.1.x.tar.gz
tqt-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175 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.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/chart-optionsform-cpp.html b/doc/html/chart-optionsform-cpp.html
index 06ed5a7f0..1bd1d10cb 100644
--- a/doc/html/chart-optionsform-cpp.html
+++ b/doc/html/chart-optionsform-cpp.html
@@ -64,7 +64,7 @@ body { background: #ffffff; color: black; }
chartTypeTextLabel = new <a href="ntqlabel.html">TQLabel</a>( "&amp;Chart Type", this );
chartTypeLayout-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( chartTypeTextLabel );
- chartTypeComboBox = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, this );
+ chartTypeComboBox = new <a href="ntqcombobox.html">TQComboBox</a>( false, this );
chartTypeComboBox-&gt;<a href="ntqcombobox.html#insertItem">insertItem</a>( TQPixmap( options_piechart ), "Pie Chart" );
chartTypeComboBox-&gt;<a href="ntqcombobox.html#insertItem">insertItem</a>( TQPixmap( options_verticalbarchart ),
"Vertical Bar Chart" );
@@ -100,7 +100,7 @@ body { background: #ffffff; color: black; }
addValuesButtonGroupLayout-&gt;<a href="qlayoutitem.html#setAlignment">setAlignment</a>( TQt::AlignTop );
noRadioButton = new <a href="ntqradiobutton.html">TQRadioButton</a>( "&amp;No", addValuesButtonGroup );
- noRadioButton-&gt;<a href="ntqradiobutton.html#setChecked">setChecked</a>( TRUE );
+ noRadioButton-&gt;<a href="ntqradiobutton.html#setChecked">setChecked</a>( true );
addValuesButtonGroupLayout-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( noRadioButton );
yesRadioButton = new <a href="ntqradiobutton.html">TQRadioButton</a>( "&amp;Yes", addValuesButtonGroup );
@@ -131,7 +131,7 @@ body { background: #ffffff; color: black; }
buttonsLayout-&gt;<a href="qboxlayout.html#addItem">addItem</a>( spacer );
okPushButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "OK", this );
- okPushButton-&gt;<a href="ntqpushbutton.html#setDefault">setDefault</a>( TRUE );
+ okPushButton-&gt;<a href="ntqpushbutton.html#setDefault">setDefault</a>( true );
buttonsLayout-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( okPushButton );
cancelPushButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "Cancel", this );