summaryrefslogtreecommitdiffstats
path: root/doc/html/buttongroups-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
commitfb401a891f1b426e9419c0cb16403df407138611 (patch)
tree045b51949b3140039e37d898d8b0513016a86bea /doc/html/buttongroups-example.html
parenta9d178f1000475ba1727ffe123a2c54585488c01 (diff)
downloadtqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz
tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/buttongroups-example.html')
-rw-r--r--doc/html/buttongroups-example.html6
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&amp;nable Radiobuttons", bgrp3 );
state-&gt;<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
*/