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/t11-main-cpp.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/t11-main-cpp.html') diff --git a/doc/html/t11-main-cpp.html b/doc/html/t11-main-cpp.html index 735afb93f..4d1432f8b 100644 --- a/doc/html/t11-main-cpp.html +++ b/doc/html/t11-main-cpp.html @@ -37,7 +37,7 @@ body { background: #ffffff; color: black; } ** ****************************************************************/ -#include <ntqapplication.h> +#include <tqapplication.h> #include <tqpushbutton.h> #include <tqlcdnumber.h> #include <tqfont.h> @@ -60,7 +60,7 @@ public: TQPushButton *quit = new TQPushButton( "&Quit", this, "quit" ); quit->setFont( TQFont( "Times", 18, TQFont::Bold ) ); - connect( quit, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) ); + connect( quit, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) ); LCDRange *angle = new LCDRange( this, "angle" ); angle->setRange( 5, 70 ); @@ -107,14 +107,14 @@ public: int main( int argc, char **argv ) { - TQApplication::setColorSpec( TQApplication::CustomColor ); - TQApplication a( argc, argv ); + TQApplication::setColorSpec( TQApplication::CustomColor ); + TQApplication a( argc, argv ); MyWidget w; w.setGeometry( 100, 100, 500, 355 ); - a.setMainWidget( &w ); + a.setMainWidget( &w ); w.show(); - return a.exec(); + return a.exec(); }


-- cgit v1.2.1