summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial2-09.html
diff options
context:
space:
mode:
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 );