diff options
Diffstat (limited to 'doc/html/tutorial1-08.html')
-rw-r--r-- | doc/html/tutorial1-08.html | 4 |
1 files changed, 2 insertions, 2 deletions
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" ); </pre> <p> We create our CannonField. -<p> <pre> <a href="ntqobject.html#connect">connect</a>( angle, TQ_SIGNAL(valueChanged(int)), +<p> <pre> <a href="tqobject.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)), + <a href="tqobject.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 |