summaryrefslogtreecommitdiffstats
path: root/src/widgets/qbuttongroup.cpp
diff options
context:
space:
mode:
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 ec429867..15495edf 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 )