diff options
Diffstat (limited to 'doc/html/listboxcombo-example.html')
-rw-r--r-- | doc/html/listboxcombo-example.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html index a1b4e6301..d9de5d573 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 <<a href="qvbox-h.html">ntqvbox.h</a>> +#include <<a href="tqvbox-h.html">tqvbox.h</a>> 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 <<a href="tqcombobox-h.html">tqcombobox.h</a>> #include <<a href="tqlistbox-h.html">tqlistbox.h</a>> -#include <<a href="qhbox-h.html">ntqhbox.h</a>> +#include <<a href="tqhbox-h.html">tqhbox.h</a>> #include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="tqpixmap-h.html">tqpixmap.h</a>> @@ -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-><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-><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-><a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 ); + <a href="tqhbox.html">TQHBox</a> *row2 = new <a href="tqhbox.html">TQHBox</a>( this ); + row2-><a href="tqhbox.html#setSpacing">setSpacing</a>( 5 ); - <a href="ntqvbox.html">TQVBox</a> *box1 = new <a href="ntqvbox.html">TQVBox</a>( row2 ); - box1-><a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 ); + <a href="tqvbox.html">TQVBox</a> *box1 = new <a href="tqvbox.html">TQVBox</a>( row2 ); + box1-><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-><a href="tqcombobox.html#listBox">listBox</a>()->insertItem( new MyListBoxItem ); } - <a href="ntqvbox.html">TQVBox</a> *box2 = new <a href="ntqvbox.html">TQVBox</a>( row2 ); - box2-><a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 ); + <a href="tqvbox.html">TQVBox</a> *box2 = new <a href="tqvbox.html">TQVBox</a>( row2 ); + box2-><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 ); |