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/small-table-example-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/small-table-example-example.html') diff --git a/doc/html/small-table-example-example.html b/doc/html/small-table-example-example.html index 582857396..9515ea06f 100644 --- a/doc/html/small-table-example-example.html +++ b/doc/html/small-table-example-example.html @@ -45,7 +45,7 @@ This example displays a TQTable and some ntqapplication.h> +#include <tqapplication.h> #include <tqtable.h> #include <tqimage.h> #include <tqpixmap.h> @@ -63,7 +63,7 @@ const int numCols = 10; int main( int argc, char **argv ) { - TQApplication app( argc, argv ); + TQApplication app( argc, argv ); TQTable table( numRows, numCols ); @@ -89,9 +89,9 @@ int main( int argc, char **argv ) for ( int j = 0; j < numRows; ++j ) table.setItem( j, 1, new TQCheckTableItem( &table, "Check me" ) ); - app.setMainWidget( &table ); + app.setMainWidget( &table ); table.show(); - return app.exec(); + return app.exec(); } -- cgit v1.2.3