From ea318d1431c89e647598c510c4245c6571aa5f46 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 26 Jan 2012 23:32:43 -0600 Subject: Update to latest tqt3 automated conversion --- doc/html/sql-overview-form1-main-cpp.html | 58 +++++++++++++++---------------- 1 file changed, 29 insertions(+), 29 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 a9b1fd62f..000dbd068 100644 --- a/doc/html/sql-overview-form1-main-cpp.html +++ b/doc/html/sql-overview-form1-main-cpp.html @@ -42,17 +42,17 @@ body { background: #ffffff; color: black; } ** *****************************************************************************/ -#include <qapplication.h> -#include <qdialog.h> -#include <qlabel.h> -#include <qlayout.h> -#include <qlineedit.h> -#include <qsqldatabase.h> -#include <qsqlcursor.h> -#include <qsqlform.h> +#include <ntqapplication.h> +#include <ntqdialog.h> +#include <ntqlabel.h> +#include <ntqlayout.h> +#include <ntqlineedit.h> +#include <ntqsqldatabase.h> +#include <ntqsqlcursor.h> +#include <ntqsqlform.h> #include "../connection.h" -class FormDialog : public TQDialog +class FormDialog : public TQDialog { public: FormDialog(); @@ -61,12 +61,12 @@ class FormDialog : public TQDialog FormDialog::FormDialog() { - TQLabel *forenameLabel = new TQLabel( "Forename:", this ); - TQLabel *forenameDisplay = new TQLabel( this ); - TQLabel *surnameLabel = new TQLabel( "Surname:", this ); - TQLabel *surnameDisplay = new TQLabel( this ); - TQLabel *salaryLabel = new TQLabel( "Salary:", this ); - TQLineEdit *salaryEdit = new TQLineEdit( this ); + TQLabel *forenameLabel = new TQLabel( "Forename:", this ); + TQLabel *forenameDisplay = new TQLabel( this ); + TQLabel *surnameLabel = new TQLabel( "Surname:", this ); + TQLabel *surnameDisplay = new TQLabel( this ); + TQLabel *salaryLabel = new TQLabel( "Salary:", this ); + TQLineEdit *salaryEdit = new TQLineEdit( this ); TQGridLayout *grid = new TQGridLayout( this ); grid->addWidget( forenameLabel, 0, 0 ); @@ -75,32 +75,32 @@ class FormDialog : public TQDialog grid->addWidget( surnameDisplay, 1, 1 ); grid->addWidget( salaryLabel, 2, 0 ); grid->addWidget( salaryEdit, 2, 1 ); - grid->activate(); + grid->activate(); - TQSqlCursor staffCursor( "staff" ); - staffCursor.select(); - staffCursor.next(); + TQSqlCursor staffCursor( "staff" ); + staffCursor.select(); + staffCursor.next(); - TQSqlForm sqlForm( this ); - sqlForm.setRecord( staffCursor.primeUpdate() ); - sqlForm.insert( forenameDisplay, "forename" ); - sqlForm.insert( surnameDisplay, "surname" ); - sqlForm.insert( salaryEdit, "salary" ); - sqlForm.readFields(); + TQSqlForm sqlForm( this ); + sqlForm.setRecord( staffCursor.primeUpdate() ); + sqlForm.insert( forenameDisplay, "forename" ); + sqlForm.insert( surnameDisplay, "surname" ); + sqlForm.insert( salaryEdit, "salary" ); + sqlForm.readFields(); } int main( int argc, char *argv[] ) { - TQApplication app( argc, argv ); + TQApplication app( argc, argv ); if ( ! createConnections() ) return 1; FormDialog *formDialog = new FormDialog(); - formDialog->show(); - app.setMainWidget( formDialog ); + formDialog->show(); + app.setMainWidget( formDialog ); - return app.exec(); + return app.exec(); }


-- cgit v1.2.3