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-08.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/tutorial1-08.html') diff --git a/doc/html/tutorial1-08.html b/doc/html/tutorial1-08.html index b2b1611b8..13676712a 100644 --- a/doc/html/tutorial1-08.html +++ b/doc/html/tutorial1-08.html @@ -192,9 +192,9 @@ widget. = new CannonField( this, "cannonField" );

We create our CannonField. -

        connect( angle, TQ_SIGNAL(valueChanged(int)),
+

        connect( angle, TQ_SIGNAL(valueChanged(int)),
                  cannonField, TQ_SLOT(setAngle(int)) );
-        connect( cannonField, TQ_SIGNAL(angleChanged(int)),
+        connect( cannonField, TQ_SIGNAL(angleChanged(int)),
                  angle, TQ_SLOT(setValue(int)) );
 

Here we connect the valueChanged() signal of the LCDRange to the -- cgit v1.2.1