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/sql-overview-table1-main-cpp.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/sql-overview-table1-main-cpp.html') diff --git a/doc/html/sql-overview-table1-main-cpp.html b/doc/html/sql-overview-table1-main-cpp.html index f8be6f2b1..ffc506d7f 100644 --- a/doc/html/sql-overview-table1-main-cpp.html +++ b/doc/html/sql-overview-table1-main-cpp.html @@ -41,7 +41,7 @@ body { background: #ffffff; color: black; } ** *****************************************************************************/ -#include <ntqapplication.h> +#include <tqapplication.h> #include <tqsqldatabase.h> #include <tqsqlcursor.h> #include <tqdatatable.h> @@ -49,16 +49,16 @@ body { background: #ffffff; color: black; } int main( int argc, char *argv[] ) { - TQApplication app( argc, argv ); + TQApplication app( argc, argv ); if ( createConnections() ) { TQSqlCursor staffCursor( "staff" ); TQDataTable *staffTable = new TQDataTable( &staffCursor, TRUE ); - app.setMainWidget( staffTable ); + app.setMainWidget( staffTable ); staffTable->refresh(); staffTable->show(); - return app.exec(); + return app.exec(); } return 0; -- cgit v1.2.3