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/hello-example.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/hello-example.html') diff --git a/doc/html/hello-example.html b/doc/html/hello-example.html index 47f0f277a..d3479116b 100644 --- a/doc/html/hello-example.html +++ b/doc/html/hello-example.html @@ -191,7 +191,7 @@ void Hello::paintEvent( ntqapplication.h> +#include <tqapplication.h> /* @@ -201,7 +201,7 @@ void Hello::paintEvent( TQApplication a(argc,argv); + TQApplication a(argc,argv); TQString s; for ( int i=1; i<argc; i++ ) { s += argv[i]; @@ -214,12 +214,12 @@ int main( int argc, char **argv ) #ifndef TQT_NO_WIDGET_TOPEXTRA // for TQt/Embedded minimal build h.setCaption( "TQt says hello" ); #endif - TQObject::connect( &h, TQ_SIGNAL(clicked()), &a, TQ_SLOT(quit()) ); + TQObject::connect( &h, TQ_SIGNAL(clicked()), &a, TQ_SLOT(quit()) ); h.setFont( TQFont("times",32,TQFont::Bold) ); // default font h.setBackgroundColor( TQt::white ); // default bg color - a.setMainWidget( &h ); + a.setMainWidget( &h ); h.show(); - return a.exec(); + return a.exec(); } -- cgit v1.2.3