From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tabdialog-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/tabdialog-example.html') diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html index 970d7e535..fd8288feb 100644 --- a/doc/html/tabdialog-example.html +++ b/doc/html/tabdialog-example.html @@ -53,7 +53,7 @@ file separated onto different tabs. #define TABDIALOG_H #include <ntqtabdialog.h> -#include <ntqstring.h> +#include <tqstring.h> #include <ntqfileinfo.h> class TabDialog : public TQTabDialog @@ -61,10 +61,10 @@ class TabDialog : public TQTabDialog TQ_OBJECT public: - TabDialog( TQWidget *parent, const char *name, const TQString &_filename ); + TabDialog( TQWidget *parent, const char *name, const TQString &_filename ); protected: - TQString filename; + TQString filename; TQFileInfo fileinfo; void setupTab1(); @@ -99,7 +99,7 @@ protected: #include <ntqlistbox.h> #include <ntqapplication.h> -TabDialog::TabDialog( TQWidget *parent, const char *name, const TQString &_filename ) +TabDialog::TabDialog( TQWidget *parent, const char *name, const TQString &_filename ) : TQTabDialog( parent, name ), filename( _filename ), fileinfo( filename ) { setupTab1(); @@ -180,7 +180,7 @@ void TabDialog::setupTab3() TQListBox *prgs = new TQListBox( tab3 ); for ( unsigned int i = 0; i < 30; i++ ) { - TQString prg = TQString( "Application %1" ).arg( i ); + TQString prg = TQString( "Application %1" ).arg( i ); prgs->insertItem( prg ); } prgs->setCurrentItem( 3 ); @@ -205,7 +205,7 @@ void TabDialog::setupTab3() #include "tabdialog.h" #include <ntqapplication.h> -#include <ntqstring.h> +#include <tqstring.h> int main( int argc, char **argv ) { -- cgit v1.2.3