From fb401a891f1b426e9419c0cb16403df407138611 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro --- doc/html/buttongroups-example.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/buttongroups-example.html') 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 TQCheckBox( "E&nable Radiobuttons", bgrp3 ); state->setChecked( TRUE ); - // ...and connect its SIGNAL clicked() with the SLOT slotChangeGrp3State() - connect( state, SIGNAL( clicked() ), this, SLOT( slotChangeGrp3State() ) ); + // ...and connect its TQ_SIGNAL clicked() with the TQ_SLOT slotChangeGrp3State() + connect( state, TQ_SIGNAL( clicked() ), 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 */ -- cgit v1.2.1