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/rangecontrols-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/rangecontrols-example.html') diff --git a/doc/html/rangecontrols-example.html b/doc/html/rangecontrols-example.html index aeb32b2d2..5c2d2bd3c 100644 --- a/doc/html/rangecontrols-example.html +++ b/doc/html/rangecontrols-example.html @@ -85,7 +85,7 @@ private: #include <ntqhbox.h> #include <ntqlcdnumber.h> #include <ntqspinbox.h> -#include <ntqlabel.h> +#include <tqlabel.h> #include <tqstring.h> #include <ntqslider.h> #include <ntqcheckbox.h> @@ -103,18 +103,18 @@ private: (void)new TQWidget( cell2 ); - TQLabel *label1 = new TQLabel( TQString( "Enter a value between\n%1 and %2:" ).arg( -INT_MAX ).arg( INT_MAX ), cell2 ); + TQLabel *label1 = new TQLabel( TQString( "Enter a value between\n%1 and %2:" ).arg( -INT_MAX ).arg( INT_MAX ), cell2 ); label1->setMaximumHeight( label1->sizeHint().height() ); TQSpinBox *sb1 = new TQSpinBox( -INT_MAX, INT_MAX, 1, cell2 ); sb1->setValue( 0 ); - TQLabel *label2 = new TQLabel( "Enter a zoom value:", cell2 ); + TQLabel *label2 = new TQLabel( "Enter a zoom value:", cell2 ); label2->setMaximumHeight( label2->sizeHint().height() ); TQSpinBox *sb2 = new TQSpinBox( 0, 1000, 10, cell2 ); sb2->setSuffix( " %" ); sb2->setSpecialValueText( "Automatic" ); - TQLabel *label3 = new TQLabel( "Enter a price:", cell2 ); + TQLabel *label3 = new TQLabel( "Enter a price:", cell2 ); label3->setMaximumHeight( label3->sizeHint().height() ); TQSpinBox *sb3 = new TQSpinBox( 0, INT_MAX, 1, cell2 ); sb3->setPrefix( "$" ); -- cgit v1.2.1