summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial2-09.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-30 14:27:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-06-25 16:29:01 +0900
commita7f1e6e2552d9cdbb3d76bff089db522248b9a24 (patch)
tree2e6dd07698083df817163d572443aaf6fdd26651 /doc/html/tutorial2-09.html
parent2584dba8aabfa2db8297dcfa258d33545ed6af43 (diff)
downloadtqt-a7f1e6e2552d9cdbb3d76bff089db522248b9a24.tar.gz
tqt-a7f1e6e2552d9cdbb3d76bff089db522248b9a24.zip
Replace TRUE/FALSE with boolean values true/false - part 1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tutorial2-09.html')
-rw-r--r--doc/html/tutorial2-09.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tutorial2-09.html b/doc/html/tutorial2-09.html
index 4bae78521..89de9fad3 100644
--- a/doc/html/tutorial2-09.html
+++ b/doc/html/tutorial2-09.html
@@ -43,7 +43,7 @@ apply to all data sets in one place.
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
OptionsForm( <a href="tqwidget.html">TQWidget</a>* parent = 0, const char* name = "options form",
- bool modal = FALSE, WFlags f = 0 );
+ bool modal = false, WFlags f = 0 );
~OptionsForm() {}
<a href="tqfont.html">TQFont</a> font() const { return m_font; }
@@ -119,7 +119,7 @@ vertical box layout.
<p> <pre> chartTypeTextLabel = new <a href="tqlabel.html">TQLabel</a>( "&amp;Chart Type", this );
<a name="x2631"></a> chartTypeLayout-&gt;<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 );
<a name="x2633"></a> chartTypeComboBox-&gt;<a href="tqcombobox.html#insertItem">insertItem</a>( TQPixmap( options_piechart ), "Pie Chart" );
chartTypeComboBox-&gt;<a href="tqcombobox.html#insertItem">insertItem</a>( TQPixmap( options_verticalbarchart ),
"Vertical Bar Chart" );
@@ -164,7 +164,7 @@ know what font the user is using).
<a name="x2644"></a> addValuesButtonGroupLayout-&gt;<a href="tqlayoutitem.html#setAlignment">setAlignment</a>( TQt::AlignTop );
noRadioButton = new <a href="tqradiobutton.html">TQRadioButton</a>( "&amp;No", addValuesButtonGroup );
- <a name="x2645"></a> noRadioButton-&gt;<a href="tqradiobutton.html#setChecked">setChecked</a>( TRUE );
+ <a name="x2645"></a> noRadioButton-&gt;<a href="tqradiobutton.html#setChecked">setChecked</a>( true );
addValuesButtonGroupLayout-&gt;<a href="tqboxlayout.html#addWidget">addWidget</a>( noRadioButton );
yesRadioButton = new <a href="tqradiobutton.html">TQRadioButton</a>( "&amp;Yes", addValuesButtonGroup );