From 397b7afa8e3f32268c4454bf4783ac2a5a799658 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 15 Oct 2024 13:05:33 +0900 Subject: Rename ntqapplication, ntqconfig and ntqmodules 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 cd9dcedef..d5e407bb6 100644 --- a/doc/html/tabdialog-example.html +++ b/doc/html/tabdialog-example.html @@ -96,7 +96,7 @@ protected: #include <tqbuttongroup.h> #include <tqcheckbox.h> #include <tqlistbox.h> -#include <ntqapplication.h> +#include <tqapplication.h> TabDialog::TabDialog( TQWidget *parent, const char *name, const TQString &_filename ) : TQTabDialog( parent, name ), filename( _filename ), fileinfo( filename ) @@ -105,7 +105,7 @@ protected: setupTab2(); setupTab3(); - connect( this, TQ_SIGNAL( applyButtonPressed() ), tqApp, TQ_SLOT( quit() ) ); + connect( this, TQ_SIGNAL( applyButtonPressed() ), tqApp, TQ_SLOT( quit() ) ); } void TabDialog::setupTab1() @@ -203,21 +203,21 @@ void TabDialog::setupTab3() *****************************************************************************/ #include "tabdialog.h" -#include <ntqapplication.h> +#include <tqapplication.h> #include <tqstring.h> int main( int argc, char **argv ) { - TQApplication a( argc, argv ); + TQApplication a( argc, argv ); TabDialog tabdialog( 0, "tabdialog", TQString( argc < 2 ? "." : argv[1] ) ); tabdialog.resize( 450, 350 ); tabdialog.setCaption( "TQt Example - Tabbed Dialog" ); - a.setMainWidget( &tabdialog ); + a.setMainWidget( &tabdialog ); tabdialog.show(); - return a.exec(); + return a.exec(); } -- cgit v1.2.3