From 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 24 Jul 2024 19:37:05 +0900 Subject: Rename text class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/listboxcombo-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/listboxcombo-example.html') diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html index 8b0006a64..d12f9d009 100644 --- a/doc/html/listboxcombo-example.html +++ b/doc/html/listboxcombo-example.html @@ -64,7 +64,7 @@ public: protected: TQListBox *lb1, *lb2; - TQLabel *label1, *label2; + TQLabel *label1, *label2; protected slots: void slotLeft2Right(); @@ -96,7 +96,7 @@ protected slots: #include <ntqpushbutton.h> #include <tqstring.h> #include <tqpixmap.h> -#include <ntqlabel.h> +#include <tqlabel.h> #include <tqimage.h> #include <tqpainter.h> #include <tqstyle.h> @@ -180,7 +180,7 @@ protected: // Create a non-editable Combobox and a label below... TQComboBox *cb1 = new TQComboBox( FALSE, box1 ); - label1 = new TQLabel( "Current Item: Combobox Item 0", box1 ); + label1 = new TQLabel( "Current Item: Combobox Item 0", box1 ); label1->setMaximumHeight( label1->sizeHint().height() * 2 ); label1->setFrameStyle( TQFrame::Panel | TQFrame::Sunken ); @@ -198,7 +198,7 @@ protected: // Create an editable Combobox and a label below... TQComboBox *cb2 = new TQComboBox( TRUE, box2 ); - label2 = new TQLabel( "Current Item: Combobox Item 0", box2 ); + label2 = new TQLabel( "Current Item: Combobox Item 0", box2 ); label2->setMaximumHeight( label2->sizeHint().height() * 2 ); label2->setFrameStyle( TQFrame::Panel | TQFrame::Sunken ); @@ -251,7 +251,7 @@ void ListBoxCombo::slotLeft2Right() void ListBoxCombo::slotCombo1Activated( const TQString &s ) { - label1->setText( TQString( "Current Item: %1" ).arg( s ) ); + label1->setText( TQString( "Current Item: %1" ).arg( s ) ); } /* @@ -264,7 +264,7 @@ void ListBoxCombo::slotCombo1Activated( const ListBoxCombo::slotCombo2Activated( const TQString &s ) { - label2->setText( TQString( "Current Item: %1" ).arg( s ) ); + label2->setText( TQString( "Current Item: %1" ).arg( s ) ); } -- cgit v1.2.3