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/sql-overview-form1-main-cpp.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/sql-overview-form1-main-cpp.html') diff --git a/doc/html/sql-overview-form1-main-cpp.html b/doc/html/sql-overview-form1-main-cpp.html index 8f8dd8c91..122ced96f 100644 --- a/doc/html/sql-overview-form1-main-cpp.html +++ b/doc/html/sql-overview-form1-main-cpp.html @@ -43,16 +43,16 @@ body { background: #ffffff; color: black; } *****************************************************************************/ #include <ntqapplication.h> -#include <ntqdialog.h> +#include <tqdialog.h> #include <tqlabel.h> #include <ntqlayout.h> -#include <ntqlineedit.h> +#include <tqlineedit.h> #include <tqsqldatabase.h> #include <tqsqlcursor.h> #include <tqsqlform.h> #include "../connection.h" -class FormDialog : public TQDialog +class FormDialog : public TQDialog { public: FormDialog(); @@ -66,7 +66,7 @@ class FormDialog : public TQDialog TQLabel *surnameLabel = new TQLabel( "Surname:", this ); TQLabel *surnameDisplay = new TQLabel( this ); TQLabel *salaryLabel = new TQLabel( "Salary:", this ); - TQLineEdit *salaryEdit = new TQLineEdit( this ); + TQLineEdit *salaryEdit = new TQLineEdit( this ); TQGridLayout *grid = new TQGridLayout( this ); grid->addWidget( forenameLabel, 0, 0 ); @@ -97,7 +97,7 @@ int main( int argc, char *argv[] ) if ( ! createConnections() ) return 1; FormDialog *formDialog = new FormDialog(); - formDialog->show(); + formDialog->show(); app.setMainWidget( formDialog ); return app.exec(); -- cgit v1.2.1