From ecca365daf06c711cf30f93f4c773dabf5642790 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 (cherry picked from commit fb401a891f1b426e9419c0cb16403df407138611) --- doc/html/tutorial1-07.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/tutorial1-07.html') diff --git a/doc/html/tutorial1-07.html b/doc/html/tutorial1-07.html index 8af0bd977..0a5ee023b 100644 --- a/doc/html/tutorial1-07.html +++ b/doc/html/tutorial1-07.html @@ -110,10 +110,10 @@ signal you'll see called somethingChanged().

This file is mainly lifted from t6/main.cpp, and only the changes are noted here. -

        connect( slider, SIGNAL(valueChanged(int)),
-                 lcd, SLOT(display(int)) );
-        connect( slider, SIGNAL(valueChanged(int)),
-                 SIGNAL(valueChanged(int)) );
+

        connect( slider, TQ_SIGNAL(valueChanged(int)),
+                 lcd, TQ_SLOT(display(int)) );
+        connect( slider, TQ_SIGNAL(valueChanged(int)),
+                 TQ_SIGNAL(valueChanged(int)) );
 

This code is from the LCDRange constructor.

The first connect is the same that you have seen in the previous chapter. @@ -158,8 +158,8 @@ outside its legal range. for( int c = 0 ; c < 4 ; c++ ) { LCDRange* lr = new LCDRange( grid ); if ( previous ) - connect( lr, SIGNAL(valueChanged(int)), - previous, SLOT(setValue(int)) ); + connect( lr, TQ_SIGNAL(valueChanged(int)), + previous, TQ_SLOT(setValue(int)) ); previous = lr; } } -- cgit v1.2.3