From 82ecd83484c9fa1ede059986ab771e74e33e68ef Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 16 Aug 2024 19:11:00 +0900 Subject: Rename layout nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/listboxcombo-example.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'doc/html/listboxcombo-example.html') 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 <ntqvbox.h> +#include <tqvbox.h> class TQListBox; class TQLabel; -class ListBoxCombo : public TQVBox +class ListBoxCombo : public TQVBox { TQ_OBJECT @@ -92,7 +92,7 @@ protected slots: #include <tqcombobox.h> #include <tqlistbox.h> -#include <ntqhbox.h> +#include <tqhbox.h> #include <tqpushbutton.h> #include <tqstring.h> #include <tqpixmap.h> @@ -138,16 +138,16 @@ protected: */ ListBoxCombo::ListBoxCombo( TQWidget *parent, const char *name ) - : TQVBox( parent, name ) + : TQVBox( parent, name ) { setMargin( 5 ); - setSpacing( 5 ); + setSpacing( 5 ); unsigned int i; TQString str; - TQHBox *row1 = new TQHBox( this ); - row1->setSpacing( 5 ); + TQHBox *row1 = new TQHBox( this ); + row1->setSpacing( 5 ); // Create a multi-selection ListBox... lb1 = new TQListBox( row1 ); @@ -172,11 +172,11 @@ protected: // create an empty single-selection ListBox lb2 = new TQListBox( row1 ); - TQHBox *row2 = new TQHBox( this ); - row2->setSpacing( 5 ); + TQHBox *row2 = new TQHBox( this ); + row2->setSpacing( 5 ); - TQVBox *box1 = new TQVBox( row2 ); - box1->setSpacing( 5 ); + TQVBox *box1 = new TQVBox( row2 ); + box1->setSpacing( 5 ); // Create a non-editable Combobox and a label below... TQComboBox *cb1 = new TQComboBox( FALSE, box1 ); @@ -193,8 +193,8 @@ protected: cb1->listBox()->insertItem( new MyListBoxItem ); } - TQVBox *box2 = new TQVBox( row2 ); - box2->setSpacing( 5 ); + TQVBox *box2 = new TQVBox( row2 ); + box2->setSpacing( 5 ); // Create an editable Combobox and a label below... TQComboBox *cb2 = new TQComboBox( TRUE, box2 ); -- cgit v1.2.3