diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-30 14:27:29 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-06-25 16:29:01 +0900 |
| commit | a7f1e6e2552d9cdbb3d76bff089db522248b9a24 (patch) | |
| tree | 2e6dd07698083df817163d572443aaf6fdd26651 /doc/html/tutorial2-09.html | |
| parent | 2584dba8aabfa2db8297dcfa258d33545ed6af43 (diff) | |
| download | tqt-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.html | 6 |
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>( "&Chart Type", this ); <a name="x2631"></a> 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 ); <a name="x2633"></a> 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" ); @@ -164,7 +164,7 @@ know what font the user is using). <a name="x2644"></a> addValuesButtonGroupLayout-><a href="tqlayoutitem.html#setAlignment">setAlignment</a>( TQt::AlignTop ); noRadioButton = new <a href="tqradiobutton.html">TQRadioButton</a>( "&No", addValuesButtonGroup ); - <a name="x2645"></a> noRadioButton-><a href="tqradiobutton.html#setChecked">setChecked</a>( TRUE ); + <a name="x2645"></a> 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 ); |
