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.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html
index a1b4e630..d9de5d57 100644
--- a/doc/html/listboxcombo-example.html
+++ b/doc/html/listboxcombo-example.html
@@ -50,12 +50,12 @@ and multi selection) and comboboxes (editable and non-editable).
#ifndef LISTBOX_COMBO_H
#define LISTBOX_COMBO_H
-#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+#include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
class TQListBox;
class TQLabel;
-class ListBoxCombo : public <a href="ntqvbox.html">TQVBox</a>
+class ListBoxCombo : public <a href="tqvbox.html">TQVBox</a>
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
@@ -92,7 +92,7 @@ protected slots:
#include &lt;<a href="tqcombobox-h.html">tqcombobox.h</a>&gt;
#include &lt;<a href="tqlistbox-h.html">tqlistbox.h</a>&gt;
-#include &lt;<a href="qhbox-h.html">ntqhbox.h</a>&gt;
+#include &lt;<a href="tqhbox-h.html">tqhbox.h</a>&gt;
#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="tqstring-h.html">tqstring.h</a>&gt;
#include &lt;<a href="tqpixmap-h.html">tqpixmap.h</a>&gt;
@@ -138,16 +138,16 @@ protected:
*/
<a name="f437"></a>ListBoxCombo::ListBoxCombo( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="ntqvbox.html">TQVBox</a>( parent, name )
+ : <a href="tqvbox.html">TQVBox</a>( parent, name )
{
<a href="tqframe.html#setMargin">setMargin</a>( 5 );
- <a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 );
+ <a href="tqhbox.html#setSpacing">setSpacing</a>( 5 );
unsigned int i;
<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 );
+ <a href="tqhbox.html">TQHBox</a> *row1 = new <a href="tqhbox.html">TQHBox</a>( this );
+<a name="x1402"></a> row1-&gt;<a href="tqhbox.html#setSpacing">setSpacing</a>( 5 );
// Create a multi-selection ListBox...
lb1 = new <a href="tqlistbox.html">TQListBox</a>( row1 );
@@ -172,11 +172,11 @@ protected:
// create an empty single-selection ListBox
lb2 = new <a href="tqlistbox.html">TQListBox</a>( row1 );
- <a href="ntqhbox.html">TQHBox</a> *row2 = new <a href="ntqhbox.html">TQHBox</a>( this );
- row2-&gt;<a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 );
+ <a href="tqhbox.html">TQHBox</a> *row2 = new <a href="tqhbox.html">TQHBox</a>( this );
+ row2-&gt;<a href="tqhbox.html#setSpacing">setSpacing</a>( 5 );
- <a href="ntqvbox.html">TQVBox</a> *box1 = new <a href="ntqvbox.html">TQVBox</a>( row2 );
- box1-&gt;<a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 );
+ <a href="tqvbox.html">TQVBox</a> *box1 = new <a href="tqvbox.html">TQVBox</a>( row2 );
+ box1-&gt;<a href="tqhbox.html#setSpacing">setSpacing</a>( 5 );
// Create a non-editable Combobox and a label below...
<a href="tqcombobox.html">TQComboBox</a> *cb1 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, box1 );
@@ -193,8 +193,8 @@ protected:
<a name="x1400"></a> cb1-&gt;<a href="tqcombobox.html#listBox">listBox</a>()-&gt;insertItem( new MyListBoxItem );
}
- <a href="ntqvbox.html">TQVBox</a> *box2 = new <a href="ntqvbox.html">TQVBox</a>( row2 );
- box2-&gt;<a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 );
+ <a href="tqvbox.html">TQVBox</a> *box2 = new <a href="tqvbox.html">TQVBox</a>( row2 );
+ box2-&gt;<a href="tqhbox.html#setSpacing">setSpacing</a>( 5 );
// Create an editable Combobox and a label below...
<a href="tqcombobox.html">TQComboBox</a> *cb2 = new <a href="tqcombobox.html">TQComboBox</a>( TRUE, box2 );