summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/pbutton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksirc/puke/pbutton.cpp')
-rw-r--r--ksirc/puke/pbutton.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ksirc/puke/pbutton.cpp b/ksirc/puke/pbutton.cpp
index edccbe81..6f128464 100644
--- a/ksirc/puke/pbutton.cpp
+++ b/ksirc/puke/pbutton.cpp
@@ -92,14 +92,14 @@ void PButton::setWidget(TQObject *_qb)
button = (TQButton *) _qb;
if(button != 0){
- connect(button, TQT_SIGNAL(pressed()),
- this, TQT_SLOT(buttonPressed()));
- connect(button, TQT_SIGNAL(released()),
- this, TQT_SLOT(buttonReleased()));
- connect(button, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(buttonClicked()));
- connect(button, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(buttonToggled(bool)));
+ connect(button, TQ_SIGNAL(pressed()),
+ this, TQ_SLOT(buttonPressed()));
+ connect(button, TQ_SIGNAL(released()),
+ this, TQ_SLOT(buttonReleased()));
+ connect(button, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(buttonClicked()));
+ connect(button, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(buttonToggled(bool)));
}
PWidget::setWidget(_qb);