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/rangecontrols-example.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'doc/html/rangecontrols-example.html') diff --git a/doc/html/rangecontrols-example.html b/doc/html/rangecontrols-example.html index ab801211d..226dd2c79 100644 --- a/doc/html/rangecontrols-example.html +++ b/doc/html/rangecontrols-example.html @@ -50,11 +50,11 @@ are supported by TQt: dials, spin boxes and sliders. #ifndef RANGECONTROLS_H #define RANGECONTROLS_H -#include <ntqvbox.h> +#include <tqvbox.h> class TQCheckBox; -class RangeControls : public TQVBox +class RangeControls : public TQVBox { TQ_OBJECT @@ -82,7 +82,7 @@ private: #include "rangecontrols.h" -#include <ntqhbox.h> +#include <tqhbox.h> #include <tqlcdnumber.h> #include <tqspinbox.h> #include <tqlabel.h> @@ -93,11 +93,11 @@ private: #include <limits.h> RangeControls::RangeControls( TQWidget *parent, const char *name ) - : TQVBox( parent, name ) + : TQVBox( parent, name ) { - TQHBox *row1 = new TQHBox( this ); + TQHBox *row1 = new TQHBox( this ); - TQVBox *cell2 = new TQVBox( row1 ); + TQVBox *cell2 = new TQVBox( row1 ); cell2->setMargin( 10 ); cell2->setFrameStyle( TQFrame::WinPanel | TQFrame::Sunken ); @@ -122,9 +122,9 @@ private: (void)new TQWidget( cell2 ); - TQHBox *row2 = new TQHBox( this ); + TQHBox *row2 = new TQHBox( this ); - TQVBox *cell3 = new TQVBox( row2 ); + TQVBox *cell3 = new TQVBox( row2 ); cell3->setMargin( 10 ); cell3->setFrameStyle( TQFrame::WinPanel | TQFrame::Sunken ); TQSlider *hslider = new TQSlider( 0, 64, 1, 33, TQt::Horizontal, cell3, "horizontal_s" ); @@ -133,7 +133,7 @@ private: lcd2->setSegmentStyle( TQLCDNumber::Filled ); connect( hslider, TQ_SIGNAL( valueChanged( int ) ), lcd2, TQ_SLOT( display( int ) ) ); - TQHBox *cell4 = new TQHBox( row2 ); + TQHBox *cell4 = new TQHBox( row2 ); cell4->setFrameStyle( TQFrame::WinPanel | TQFrame::Sunken ); cell4->setMargin( 10 ); TQSlider *vslider = new TQSlider( 0, 64, 1, 8, TQt::Vertical, cell4 ); -- cgit v1.2.3