summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-08.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-08.html')
-rw-r--r--doc/html/tutorial1-08.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-08.html b/doc/html/tutorial1-08.html
index bb72603e..b2b1611b 100644
--- a/doc/html/tutorial1-08.html
+++ b/doc/html/tutorial1-08.html
@@ -192,10 +192,10 @@ widget.
= new CannonField( this, "cannonField" );
</pre>
<p> We create our CannonField.
-<p> <pre> <a href="ntqobject.html#connect">connect</a>( angle, SIGNAL(valueChanged(int)),
- cannonField, SLOT(setAngle(int)) );
- <a href="ntqobject.html#connect">connect</a>( cannonField, SIGNAL(angleChanged(int)),
- angle, SLOT(setValue(int)) );
+<p> <pre> <a href="ntqobject.html#connect">connect</a>( angle, TQ_SIGNAL(valueChanged(int)),
+ cannonField, TQ_SLOT(setAngle(int)) );
+ <a href="ntqobject.html#connect">connect</a>( cannonField, TQ_SIGNAL(angleChanged(int)),
+ angle, TQ_SLOT(setValue(int)) );
</pre>
<p> Here we connect the valueChanged() signal of the LCDRange to the
setAngle() slot of the CannonField. This will update CannonField's angle