From fb401a891f1b426e9419c0cb16403df407138611 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro --- doc/html/tutorial2-08.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'doc/html/tutorial2-08.html') diff --git a/doc/html/tutorial2-08.html b/doc/html/tutorial2-08.html index 1e30c2c5b..315b025ca 100644 --- a/doc/html/tutorial2-08.html +++ b/doc/html/tutorial2-08.html @@ -170,15 +170,15 @@ key an accelerator for the Cancel button.

We add the buttonBox layout to the tableButtonBox and the layout is complete. -

        connect( table, SIGNAL( clicked(int,int,int,const TQPoint&) ),
-                 this, SLOT( setColor(int,int) ) );
-        connect( table, SIGNAL( currentChanged(int,int) ),
-                 this, SLOT( currentChanged(int,int) ) );
-        connect( table, SIGNAL( valueChanged(int,int) ),
-                 this, SLOT( valueChanged(int,int) ) );
-        connect( colorPushButton, SIGNAL( clicked() ), this, SLOT( setColor() ) );
-        connect( okPushButton, SIGNAL( clicked() ), this, SLOT( accept() ) );
-        connect( cancelPushButton, SIGNAL( clicked() ), this, SLOT( reject() ) );
+

        connect( table, TQ_SIGNAL( clicked(int,int,int,const TQPoint&) ),
+                 this, TQ_SLOT( setColor(int,int) ) );
+        connect( table, TQ_SIGNAL( currentChanged(int,int) ),
+                 this, TQ_SLOT( currentChanged(int,int) ) );
+        connect( table, TQ_SIGNAL( valueChanged(int,int) ),
+                 this, TQ_SLOT( valueChanged(int,int) ) );
+        connect( colorPushButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( setColor() ) );
+        connect( okPushButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( accept() ) );
+        connect( cancelPushButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( reject() ) );
 

We now "wire up" the form.

    -- cgit v1.2.1