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/t8-main-cpp.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/t8-main-cpp.html') diff --git a/doc/html/t8-main-cpp.html b/doc/html/t8-main-cpp.html index f14cc3047..74a074d2a 100644 --- a/doc/html/t8-main-cpp.html +++ b/doc/html/t8-main-cpp.html @@ -48,18 +48,18 @@ body { background: #ffffff; color: black; } #include "cannon.h" -class MyWidget: public TQWidget +class MyWidget: public TQWidget { public: - MyWidget( TQWidget *parent=0, const char *name=0 ); + MyWidget( TQWidget *parent=0, const char *name=0 ); }; -MyWidget::MyWidget( TQWidget *parent, const char *name ) - : TQWidget( parent, name ) +MyWidget::MyWidget( 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()) ); @@ -83,7 +83,7 @@ public: grid->setColStretch( 1, 10 ); angle->setValue( 60 ); - angle->setFocus(); + angle->setFocus(); } @@ -92,9 +92,9 @@ int main( int argc, char **argv ) TQApplication a( argc, argv ); MyWidget w; - w.setGeometry( 100, 100, 500, 355 ); + w.setGeometry( 100, 100, 500, 355 ); a.setMainWidget( &w ); - w.show(); + w.show(); return a.exec(); } -- cgit v1.2.3