diff options
Diffstat (limited to 'doc/html/buttongroups-example.html')
-rw-r--r-- | doc/html/buttongroups-example.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/buttongroups-example.html b/doc/html/buttongroups-example.html index bf6b0edf0..b6ee7f5ea 100644 --- a/doc/html/buttongroups-example.html +++ b/doc/html/buttongroups-example.html @@ -154,8 +154,8 @@ protected slots: // insert a checkbox... state = new <a href="ntqcheckbox.html">TQCheckBox</a>( "E&nable Radiobuttons", bgrp3 ); state-><a href="ntqcheckbox.html#setChecked">setChecked</a>( TRUE ); - // ...and connect its SIGNAL clicked() with the SLOT slotChangeGrp3State() - <a href="ntqobject.html#connect">connect</a>( state, SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, SLOT( slotChangeGrp3State() ) ); + // ...and connect its TQ_SIGNAL clicked() with the TQ_SLOT slotChangeGrp3State() + <a href="ntqobject.html#connect">connect</a>( state, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( slotChangeGrp3State() ) ); // ------------ fourth group @@ -186,7 +186,7 @@ protected slots: } /* - * SLOT slotChangeGrp3State() + * TQ_SLOT slotChangeGrp3State() * * enables/disables the radiobuttons of the third buttongroup */ |