From fef846914f8db6dc117e206ef913d519bf6bb33e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 29 Jul 2024 12:43:23 +0900 Subject: Rename basic widget nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/t11-main-cpp.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 a05267f03..ce49957aa 100644 --- a/doc/html/t11-main-cpp.html +++ b/doc/html/t11-main-cpp.html @@ -39,8 +39,8 @@ body { background: #ffffff; color: black; } ****************************************************************/ #include <ntqapplication.h> -#include <ntqpushbutton.h> -#include <ntqlcdnumber.h> +#include <tqpushbutton.h> +#include <tqlcdnumber.h> #include <tqfont.h> #include <ntqlayout.h> @@ -58,7 +58,7 @@ public: MyWidget::MyWidget( TQWidget *parent, const char *name ) : TQWidget( parent, name ) { - TQPushButton *quit = new TQPushButton( "&Quit", this, "quit" ); + TQPushButton *quit = new TQPushButton( "&Quit", this, "quit" ); quit->setFont( TQFont( "Times", 18, TQFont::Bold ) ); connect( quit, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) ); @@ -81,7 +81,7 @@ public: connect( cannonField, TQ_SIGNAL(forceChanged(int)), force, TQ_SLOT(setValue(int)) ); - TQPushButton *shoot = new TQPushButton( "&Shoot", this, "shoot" ); + TQPushButton *shoot = new TQPushButton( "&Shoot", this, "shoot" ); shoot->setFont( TQFont( "Times", 18, TQFont::Bold ) ); connect( shoot, TQ_SIGNAL(clicked()), cannonField, TQ_SLOT(shoot()) ); -- cgit v1.2.1