diff options
Diffstat (limited to 'doc/html/listboxcombo-example.html')
-rw-r--r-- | doc/html/listboxcombo-example.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html index 40829a8e2..64212e49c 100644 --- a/doc/html/listboxcombo-example.html +++ b/doc/html/listboxcombo-example.html @@ -68,8 +68,8 @@ protected: protected slots: void slotLeft2Right(); - void slotCombo1Activated( const <a href="ntqstring.html">TQString</a> &s ); - void slotCombo2Activated( const <a href="ntqstring.html">TQString</a> &s ); + void slotCombo1Activated( const <a href="tqstring.html">TQString</a> &s ); + void slotCombo2Activated( const <a href="tqstring.html">TQString</a> &s ); }; @@ -94,7 +94,7 @@ protected slots: #include <<a href="qlistbox-h.html">ntqlistbox.h</a>> #include <<a href="qhbox-h.html">ntqhbox.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> -#include <<a href="qstring-h.html">ntqstring.h</a>> +#include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qlabel-h.html">ntqlabel.h</a>> #include <<a href="tqimage-h.html">tqimage.h</a>> @@ -144,7 +144,7 @@ protected: <a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 ); unsigned int i; - <a href="ntqstring.html">TQString</a> str; + <a href="tqstring.html">TQString</a> str; <a href="ntqhbox.html">TQHBox</a> *row1 = new <a href="ntqhbox.html">TQHBox</a>( this ); <a name="x1402"></a> row1-><a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 ); @@ -212,8 +212,8 @@ protected: } // Connect the activated SIGNALs of the Comboboxes with SLOTs -<a name="x1398"></a> <a href="tqobject.html#connect">connect</a>( cb1, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( const <a href="ntqstring.html">TQString</a> & ) ), this, TQ_SLOT( slotCombo1Activated( const <a href="ntqstring.html">TQString</a> & ) ) ); - <a href="tqobject.html#connect">connect</a>( cb2, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( const <a href="ntqstring.html">TQString</a> & ) ), this, TQ_SLOT( slotCombo2Activated( const <a href="ntqstring.html">TQString</a> & ) ) ); +<a name="x1398"></a> <a href="tqobject.html#connect">connect</a>( cb1, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( const <a href="tqstring.html">TQString</a> & ) ), this, TQ_SLOT( slotCombo1Activated( const <a href="tqstring.html">TQString</a> & ) ) ); + <a href="tqobject.html#connect">connect</a>( cb2, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( const <a href="tqstring.html">TQString</a> & ) ), this, TQ_SLOT( slotCombo2Activated( const <a href="tqstring.html">TQString</a> & ) ) ); } /* @@ -242,27 +242,27 @@ void <a name="f438"></a>ListBoxCombo::slotLeft2Right() } /* - * TQ_SLOT slotCombo1Activated( const <a href="ntqstring.html">TQString</a> &s ) + * TQ_SLOT slotCombo1Activated( const <a href="tqstring.html">TQString</a> &s ) * * Sets the text of the item which the user just selected * in the first Combobox (and is now the value of s) to * the first Label. */ -void <a name="f439"></a>ListBoxCombo::slotCombo1Activated( const <a href="ntqstring.html">TQString</a> &s ) +void <a name="f439"></a>ListBoxCombo::slotCombo1Activated( const <a href="tqstring.html">TQString</a> &s ) { <a name="x1403"></a> label1-><a href="ntqlabel.html#setText">setText</a>( TQString( "Current Item: %1" ).arg( s ) ); } /* - * TQ_SLOT slotCombo2Activated( const <a href="ntqstring.html">TQString</a> &s ) + * TQ_SLOT slotCombo2Activated( const <a href="tqstring.html">TQString</a> &s ) * * Sets the text of the item which the user just selected * in the second Combobox (and is now the value of s) to * the second Label. */ -void <a name="f440"></a>ListBoxCombo::slotCombo2Activated( const <a href="ntqstring.html">TQString</a> &s ) +void <a name="f440"></a>ListBoxCombo::slotCombo2Activated( const <a href="tqstring.html">TQString</a> &s ) { label2-><a href="ntqlabel.html#setText">setText</a>( TQString( "Current Item: %1" ).arg( s ) ); } |