From 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Jun 2024 23:07:22 +0900 Subject: Rename ntqwidget* related files to equivalent tqwidget* Signed-off-by: Michele Calgaro --- doc/html/tabdialog-example.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/tabdialog-example.html') diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html index 3f0a91189..970d7e535 100644 --- a/doc/html/tabdialog-example.html +++ b/doc/html/tabdialog-example.html @@ -61,7 +61,7 @@ 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; @@ -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(); @@ -116,7 +116,7 @@ void TabDialog::setupTab1() (void)new TQLabel( "Filename:", tab1 ); TQLineEdit *fname = new TQLineEdit( filename, tab1 ); - fname->setFocus(); + fname->setFocus(); (void)new TQLabel( "Path:", tab1 ); TQLabel *path = new TQLabel( fileinfo.dirPath( TRUE ), tab1 ); @@ -213,8 +213,8 @@ int main( int argc, char **argv ) TQApplication a( argc, argv ); TabDialog tabdialog( 0, "tabdialog", TQString( argc < 2 ? "." : argv[1] ) ); - tabdialog.resize( 450, 350 ); - tabdialog.setCaption( "TQt Example - Tabbed Dialog" ); + tabdialog.resize( 450, 350 ); + tabdialog.setCaption( "TQt Example - Tabbed Dialog" ); a.setMainWidget( &tabdialog ); tabdialog.show(); -- cgit v1.2.3