From fef846914f8db6dc117e206ef913d519bf6bb33e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 29 Jul 2024 12:43:23 +0900 Subject: Rename basic widget nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/layout-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/layout-example.html') diff --git a/doc/html/layout-example.html b/doc/html/layout-example.html index 272713f50..6abf2a7ed 100644 --- a/doc/html/layout-example.html +++ b/doc/html/layout-example.html @@ -50,9 +50,9 @@ classes, TQGridLayout, #include <ntqapplication.h> #include <tqlabel.h> #include <tqcolor.h> -#include <ntqpushbutton.h> +#include <tqpushbutton.h> #include <ntqlayout.h> -#include <ntqlineedit.h> +#include <tqlineedit.h> #include <ntqmultilineedit.h> #include <tqmenubar.h> #include <tqpopupmenu.h> @@ -86,7 +86,7 @@ public: TQBoxLayout *buttons = new TQHBoxLayout( topLayout ); int i; for ( i = 1; i <= 4; i++ ) { - TQPushButton* but = new TQPushButton( this ); + TQPushButton* but = new TQPushButton( this ); TQString s; s.sprintf( "Button %d", i ); but->setText( s ); @@ -104,10 +104,10 @@ public: // Make another hbox that will hold a left-justified row of buttons. TQBoxLayout *buttons2 = new TQHBoxLayout( topLayout ); - TQPushButton* but = new TQPushButton( "Button five", this ); + TQPushButton* but = new TQPushButton( "Button five", this ); buttons2->addWidget( but ); - but = new TQPushButton( "Button 6", this ); + but = new TQPushButton( "Button 6", this ); buttons2->addWidget( but ); // Fill up the rest of the hbox with stretchable space, so that @@ -141,7 +141,7 @@ public: int row; for ( row = 0; row < numRows; row++ ) { - TQLineEdit *ed = new TQLineEdit( this ); + TQLineEdit *ed = new TQLineEdit( this ); // The line edit goes in the second column grid->addWidget( ed, row, linedCol ); -- cgit v1.2.3