summaryrefslogtreecommitdiffstats
path: root/doc/html/listboxcombo-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/listboxcombo-example.html')
-rw-r--r--doc/html/listboxcombo-example.html20
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> &amp;s );
- void slotCombo2Activated( const <a href="ntqstring.html">TQString</a> &amp;s );
+ void slotCombo1Activated( const <a href="tqstring.html">TQString</a> &amp;s );
+ void slotCombo2Activated( const <a href="tqstring.html">TQString</a> &amp;s );
};
@@ -94,7 +94,7 @@ protected slots:
#include &lt;<a href="qlistbox-h.html">ntqlistbox.h</a>&gt;
#include &lt;<a href="qhbox-h.html">ntqhbox.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
-#include &lt;<a href="qstring-h.html">ntqstring.h</a>&gt;
+#include &lt;<a href="tqstring-h.html">tqstring.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
#include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
@@ -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-&gt;<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> &amp; ) ), this, TQ_SLOT( slotCombo1Activated( const <a href="ntqstring.html">TQString</a> &amp; ) ) );
- <a href="tqobject.html#connect">connect</a>( cb2, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( const <a href="ntqstring.html">TQString</a> &amp; ) ), this, TQ_SLOT( slotCombo2Activated( const <a href="ntqstring.html">TQString</a> &amp; ) ) );
+<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> &amp; ) ), this, TQ_SLOT( slotCombo1Activated( const <a href="tqstring.html">TQString</a> &amp; ) ) );
+ <a href="tqobject.html#connect">connect</a>( cb2, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( const <a href="tqstring.html">TQString</a> &amp; ) ), this, TQ_SLOT( slotCombo2Activated( const <a href="tqstring.html">TQString</a> &amp; ) ) );
}
/*
@@ -242,27 +242,27 @@ void <a name="f438"></a>ListBoxCombo::slotLeft2Right()
}
/*
- * TQ_SLOT slotCombo1Activated( const <a href="ntqstring.html">TQString</a> &amp;s )
+ * TQ_SLOT slotCombo1Activated( const <a href="tqstring.html">TQString</a> &amp;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> &amp;s )
+void <a name="f439"></a>ListBoxCombo::slotCombo1Activated( const <a href="tqstring.html">TQString</a> &amp;s )
{
<a name="x1403"></a> label1-&gt;<a href="ntqlabel.html#setText">setText</a>( TQString( "Current Item: %1" ).arg( s ) );
}
/*
- * TQ_SLOT slotCombo2Activated( const <a href="ntqstring.html">TQString</a> &amp;s )
+ * TQ_SLOT slotCombo2Activated( const <a href="tqstring.html">TQString</a> &amp;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> &amp;s )
+void <a name="f440"></a>ListBoxCombo::slotCombo2Activated( const <a href="tqstring.html">TQString</a> &amp;s )
{
label2-&gt;<a href="ntqlabel.html#setText">setText</a>( TQString( "Current Item: %1" ).arg( s ) );
}