From 04913ce7a46fd027856e83a96205fdc388742a19 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 May 2024 14:04:45 +0900 Subject: Rename ntqobject*.h and qobject*.cpp to tqobject* Signed-off-by: Michele Calgaro --- doc/html/tutorial1-04.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/tutorial1-04.html') diff --git a/doc/html/tutorial1-04.html b/doc/html/tutorial1-04.html index afe97744e..fc23a6f94 100644 --- a/doc/html/tutorial1-04.html +++ b/doc/html/tutorial1-04.html @@ -63,7 +63,7 @@ public: quit->setGeometry( 62, 40, 75, 30 ); 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()) ); } @@ -101,8 +101,8 @@ you specify a null pointer as the parent. As you can see, this widget defaults to be a top-level window.

The second argument is the widget's name. This is not the text that appears in the window's title bar or in the button. It is a name -associated with a widget to make it possible to look up this widget later, and there is -also a handy debugging function that will list a complete widget hierarchy. +associated with a widget to make it possible to look up this widget later, and there is +also a handy debugging function that will list a complete widget hierarchy.

    MyWidget::MyWidget( TQWidget *parent, const char *name )
             : TQWidget( parent, name )
 
@@ -132,7 +132,7 @@ when you choose to, the child will automatically tell TQt about its imminent death.)

The setGeometry() call does the same as move() and resize() did in the previous chapters. -

        connect( quit, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) );
+

        connect( quit, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) );
     }
 

Because the MyWidget class doesn't know about the application object, it -- cgit v1.2.3