summaryrefslogtreecommitdiffstats
path: root/src/widgets/qbuttongroup.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-27 19:25:43 +0900
committerMichele Calgaro <[email protected]>2023-12-27 19:25:43 +0900
commitfb401a891f1b426e9419c0cb16403df407138611 (patch)
tree045b51949b3140039e37d898d8b0513016a86bea /src/widgets/qbuttongroup.cpp
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 <[email protected]>
Diffstat (limited to 'src/widgets/qbuttongroup.cpp')
-rw-r--r--src/widgets/qbuttongroup.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widgets/qbuttongroup.cpp b/src/widgets/qbuttongroup.cpp
index ec4298675..15495edff 100644
--- a/src/widgets/qbuttongroup.cpp
+++ b/src/widgets/qbuttongroup.cpp
@@ -268,10 +268,10 @@ int TQButtonGroup::insert( TQButton *button, int id )
button->setGroup(this);
buttons->append( bi );
- connect( button, SIGNAL(pressed()) , SLOT(buttonPressed()) );
- connect( button, SIGNAL(released()), SLOT(buttonReleased()) );
- connect( button, SIGNAL(clicked()) , SLOT(buttonClicked()) );
- connect( button, SIGNAL(toggled(bool)) , SLOT(buttonToggled(bool)) );
+ connect( button, TQ_SIGNAL(pressed()) , TQ_SLOT(buttonPressed()) );
+ connect( button, TQ_SIGNAL(released()), TQ_SLOT(buttonReleased()) );
+ connect( button, TQ_SIGNAL(clicked()) , TQ_SLOT(buttonClicked()) );
+ connect( button, TQ_SIGNAL(toggled(bool)) , TQ_SLOT(buttonToggled(bool)) );
if ( button->isToggleButton() && !button->isOn() &&
selected() && (selected()->focusPolicy() & TabFocus) != 0 )