diff options
Diffstat (limited to 'doc/html/lineedits-example.html')
-rw-r--r-- | doc/html/lineedits-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/lineedits-example.html b/doc/html/lineedits-example.html index 17f13c7b5..1b6b9f5a4 100644 --- a/doc/html/lineedits-example.html +++ b/doc/html/lineedits-example.html @@ -119,7 +119,7 @@ protected slots: <a name="x169"></a> row1-><a href="tqboxlayout.html#addWidget">addWidget</a>( label ); // Create a Combobox with three items... - combo1 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); + combo1 = new <a href="tqcombobox.html">TQComboBox</a>( false, this ); row1-><a href="tqboxlayout.html#addWidget">addWidget</a>( combo1 ); <a name="x171"></a> combo1-><a href="tqcombobox.html#insertItem">insertItem</a>( "Normal" ); combo1-><a href="tqcombobox.html#insertItem">insertItem</a>( "Password" ); @@ -141,7 +141,7 @@ protected slots: row2-><a href="tqboxlayout.html#addWidget">addWidget</a>( label ); // A second Combobox with again three items... - combo2 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); + combo2 = new <a href="tqcombobox.html">TQComboBox</a>( false, this ); row2-><a href="tqboxlayout.html#addWidget">addWidget</a>( combo2 ); combo2-><a href="tqcombobox.html#insertItem">insertItem</a>( "No Validator" ); combo2-><a href="tqcombobox.html#insertItem">insertItem</a>( "Integer Validator" ); @@ -162,7 +162,7 @@ protected slots: row3-><a href="tqboxlayout.html#addWidget">addWidget</a>( label ); // A combo box for setting alignment - combo3 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); + combo3 = new <a href="tqcombobox.html">TQComboBox</a>( false, this ); row3-><a href="tqboxlayout.html#addWidget">addWidget</a>( combo3 ); combo3-><a href="tqcombobox.html#insertItem">insertItem</a>( "Left" ); combo3-><a href="tqcombobox.html#insertItem">insertItem</a>( "Centered" ); @@ -183,7 +183,7 @@ protected slots: row4-><a href="tqboxlayout.html#addWidget">addWidget</a>( label ); // A combo box for choosing an input mask - combo4 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); + combo4 = new <a href="tqcombobox.html">TQComboBox</a>( false, this ); row4-><a href="tqboxlayout.html#addWidget">addWidget</a>( combo4 ); combo4-><a href="tqcombobox.html#insertItem">insertItem</a>( "No mask" ); combo4-><a href="tqcombobox.html#insertItem">insertItem</a>( "Phone number" ); @@ -207,7 +207,7 @@ protected slots: (void)new <a href="tqlabel.html">TQLabel</a>( "Read-Only: ", row5 ); // A combo box for setting alignment - combo5 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, row5 ); + combo5 = new <a href="tqcombobox.html">TQComboBox</a>( false, row5 ); combo5-><a href="tqcombobox.html#insertItem">insertItem</a>( "False" ); combo5-><a href="tqcombobox.html#insertItem">insertItem</a>( "True" ); // ...and again the activated() TQ_SIGNAL gets connected with a TQ_SLOT @@ -341,10 +341,10 @@ void <a name="f224"></a>LineEdits::slotReadOnlyChanged( int i ) { switch ( i ) { case 0: -<a name="x178"></a> lined5-><a href="tqlineedit.html#setReadOnly">setReadOnly</a>( FALSE ); +<a name="x178"></a> lined5-><a href="tqlineedit.html#setReadOnly">setReadOnly</a>( false ); break; case 1: - lined5-><a href="tqlineedit.html#setReadOnly">setReadOnly</a>( TRUE ); + lined5-><a href="tqlineedit.html#setReadOnly">setReadOnly</a>( true ); break; } |