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/tutorial1-10.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/tutorial1-10.html') diff --git a/doc/html/tutorial1-10.html b/doc/html/tutorial1-10.html index cb4d0ed7d..8a8da0f20 100644 --- a/doc/html/tutorial1-10.html +++ b/doc/html/tutorial1-10.html @@ -189,10 +189,10 @@ is 0, 0). force->setRange( 10, 50 );

We add a second LCDRange, which will be used to set the force. -

        connect( force, SIGNAL(valueChanged(int)),
-                 cannonField, SLOT(setForce(int)) );
-        connect( cannonField, SIGNAL(forceChanged(int)),
-                 force, SLOT(setValue(int)) );
+

        connect( force, TQ_SIGNAL(valueChanged(int)),
+                 cannonField, TQ_SLOT(setForce(int)) );
+        connect( cannonField, TQ_SIGNAL(forceChanged(int)),
+                 force, TQ_SLOT(setValue(int)) );
 

We connect the force widget and the cannonField widget, just like we did for the angle widget. -- cgit v1.2.1