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/picture-example.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/picture-example.html') diff --git a/doc/html/picture-example.html b/doc/html/picture-example.html index 89fd4f01d..b632df5f0 100644 --- a/doc/html/picture-example.html +++ b/doc/html/picture-example.html @@ -46,7 +46,7 @@ a set of drawing commands. ** *****************************************************************************/ -#include <ntqapplication.h> +#include <tqapplication.h> #include <tqpainter.h> #include <tqpicture.h> #include <tqpixmap.h> @@ -132,7 +132,7 @@ void PictureDisplay::paintEvent( update(); break; case 'q': // quit - TQApplication::exit(); + TQApplication::exit(); break; } } @@ -140,7 +140,7 @@ void PictureDisplay::paintEvent( TQApplication a( argc, argv ); // TQApplication required! + TQApplication a( argc, argv ); // TQApplication required! const char *fileName = "car.pic"; // default picture file name @@ -160,11 +160,11 @@ int main( int argc, char **argv ) return 0; } else { PictureDisplay test( fileName ); // create picture display - a.setMainWidget( &test); // set main widget + a.setMainWidget( &test); // set main widget test.setCaption("TQt Example - Picture"); test.show(); // show it - return a.exec(); // start event loop + return a.exec(); // start event loop } } -- cgit v1.2.1