diff options
Diffstat (limited to 'doc/html/wizard-wizard-cpp.html')
-rw-r--r-- | doc/html/wizard-wizard-cpp.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/wizard-wizard-cpp.html b/doc/html/wizard-wizard-cpp.html index f0f6b0bc0..7a9c1c835 100644 --- a/doc/html/wizard-wizard-cpp.html +++ b/doc/html/wizard-wizard-cpp.html @@ -87,8 +87,8 @@ void <a name="f4"></a>Wizard::setupPage1() <a name="x6"></a> key-><a href="ntqlineedit.html#setMaxLength">setMaxLength</a>( 4 ); <a name="x7"></a> key-><a href="ntqlineedit.html#setValidator">setValidator</a>( new <a href="qintvalidator.html">TQIntValidator</a>( 1000, 9999, key ) ); -<a name="x9"></a> <a href="tqobject.html#connect">connect</a>( key, TQ_SIGNAL( <a href="ntqlineedit.html#textChanged">textChanged</a>( const <a href="ntqstring.html">TQString</a> & ) ), - this, TQ_SLOT( keyChanged( const <a href="ntqstring.html">TQString</a> & ) ) ); +<a name="x9"></a> <a href="tqobject.html#connect">connect</a>( key, TQ_SIGNAL( <a href="ntqlineedit.html#textChanged">textChanged</a>( const <a href="tqstring.html">TQString</a> & ) ), + this, TQ_SLOT( keyChanged( const <a href="tqstring.html">TQString</a> & ) ) ); <a href="ntqwizard.html#addPage">addPage</a>( page1, "Personal Key" ); @@ -143,12 +143,12 @@ void <a name="f5"></a>Wizard::setupPage2() phone = new <a href="ntqlineedit.html">TQLineEdit</a>( row4 ); email = new <a href="ntqlineedit.html">TQLineEdit</a>( row5 ); - <a href="tqobject.html#connect">connect</a>( firstName, TQ_SIGNAL( <a href="ntqlineedit.html#textChanged">textChanged</a>( const <a href="ntqstring.html">TQString</a> & ) ), - this, TQ_SLOT( dataChanged( const <a href="ntqstring.html">TQString</a> & ) ) ); - <a href="tqobject.html#connect">connect</a>( lastName, TQ_SIGNAL( <a href="ntqlineedit.html#textChanged">textChanged</a>( const <a href="ntqstring.html">TQString</a> & ) ), - this, TQ_SLOT( dataChanged( const <a href="ntqstring.html">TQString</a> & ) ) ); - <a href="tqobject.html#connect">connect</a>( email, TQ_SIGNAL( <a href="ntqlineedit.html#textChanged">textChanged</a>( const <a href="ntqstring.html">TQString</a> & ) ), - this, TQ_SLOT( dataChanged( const <a href="ntqstring.html">TQString</a> & ) ) ); + <a href="tqobject.html#connect">connect</a>( firstName, TQ_SIGNAL( <a href="ntqlineedit.html#textChanged">textChanged</a>( const <a href="tqstring.html">TQString</a> & ) ), + this, TQ_SLOT( dataChanged( const <a href="tqstring.html">TQString</a> & ) ) ); + <a href="tqobject.html#connect">connect</a>( lastName, TQ_SIGNAL( <a href="ntqlineedit.html#textChanged">textChanged</a>( const <a href="tqstring.html">TQString</a> & ) ), + this, TQ_SLOT( dataChanged( const <a href="tqstring.html">TQString</a> & ) ) ); + <a href="tqobject.html#connect">connect</a>( email, TQ_SIGNAL( <a href="ntqlineedit.html#textChanged">textChanged</a>( const <a href="tqstring.html">TQString</a> & ) ), + this, TQ_SLOT( dataChanged( const <a href="tqstring.html">TQString</a> & ) ) ); <a href="ntqwizard.html#addPage">addPage</a>( page2, "Personal Data" ); @@ -242,15 +242,15 @@ void <a name="f6"></a>Wizard::setupPage3() } } -void <a name="f7"></a>Wizard::keyChanged( const <a href="ntqstring.html">TQString</a> &text ) +void <a name="f7"></a>Wizard::keyChanged( const <a href="tqstring.html">TQString</a> &text ) { - <a href="ntqstring.html">TQString</a> t = text; + <a href="tqstring.html">TQString</a> t = text; int p = 0; <a name="x10"></a> bool on = ( key-><a href="ntqlineedit.html#validator">validator</a>()->validate(t, p) == TQValidator::Acceptable ); <a href="ntqwizard.html#nextButton">nextButton</a>()->setEnabled( on ); } -void <a name="f8"></a>Wizard::dataChanged( const <a href="ntqstring.html">TQString</a> & ) +void <a name="f8"></a>Wizard::dataChanged( const <a href="tqstring.html">TQString</a> & ) { if ( !firstName-><a href="ntqlineedit.html#text">text</a>().isEmpty() && !lastName-><a href="ntqlineedit.html#text">text</a>().isEmpty() && |