From 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Jun 2024 23:07:22 +0900 Subject: Rename ntqwidget* related files to equivalent tqwidget* Signed-off-by: Michele Calgaro --- doc/html/t13-gamebrd-cpp.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/t13-gamebrd-cpp.html') diff --git a/doc/html/t13-gamebrd-cpp.html b/doc/html/t13-gamebrd-cpp.html index 399ee20ed..1bd5e2550 100644 --- a/doc/html/t13-gamebrd-cpp.html +++ b/doc/html/t13-gamebrd-cpp.html @@ -50,11 +50,11 @@ body { background: #ffffff; color: black; } #include "lcdrange.h" #include "cannon.h" -GameBoard::GameBoard( TQWidget *parent, const char *name ) - : TQWidget( parent, name ) +GameBoard::GameBoard( TQWidget *parent, const char *name ) + : TQWidget( parent, name ) { TQPushButton *quit = new TQPushButton( "&Quit", this, "quit" ); - quit->setFont( TQFont( "Times", 18, TQFont::Bold ) ); + quit->setFont( TQFont( "Times", 18, TQFont::Bold ) ); connect( quit, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) ); @@ -82,11 +82,11 @@ body { background: #ffffff; color: black; } this, TQ_SLOT(missed()) ); TQPushButton *shoot = new TQPushButton( "&Shoot", this, "shoot" ); - shoot->setFont( TQFont( "Times", 18, TQFont::Bold ) ); + shoot->setFont( TQFont( "Times", 18, TQFont::Bold ) ); connect( shoot, TQ_SIGNAL(clicked()), TQ_SLOT(fire()) ); connect( cannonField, TQ_SIGNAL(canShoot(bool)), - shoot, TQ_SLOT(setEnabled(bool)) ); + shoot, TQ_SLOT(setEnabled(bool)) ); TQPushButton *restart = new TQPushButton( "&New Game", this, "newgame" ); @@ -122,7 +122,7 @@ body { background: #ffffff; color: black; } angle->setValue( 60 ); force->setValue( 25 ); - angle->setFocus(); + angle->setFocus(); newGame(); } -- cgit v1.2.3