summaryrefslogtreecommitdiffstats
path: root/akregator/src/tagaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/tagaction.cpp')
-rw-r--r--akregator/src/tagaction.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/akregator/src/tagaction.cpp b/akregator/src/tagaction.cpp
index f987409c..728bf0ab 100644
--- a/akregator/src/tagaction.cpp
+++ b/akregator/src/tagaction.cpp
@@ -49,8 +49,8 @@ TagAction::TagAction(const Tag& tag, const TQObject *receiver, const char *slot,
: TDEToggleAction(tag.name(), TDEShortcut(), 0, 0, parent), d(new TagActionPrivate)
{
d->tag = tag;
- connect(this, TQT_SIGNAL(toggled(const Tag&, bool)), receiver, slot);
- connect(this, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotToggled(bool)));
+ connect(this, TQ_SIGNAL(toggled(const Tag&, bool)), receiver, slot);
+ connect(this, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotToggled(bool)));
}
TagAction::~TagAction()
@@ -93,7 +93,7 @@ int TagAction::plug(TQWidget* widget, int index)
int id = popup->insertItem(TagMenuItem::checkBoxIconSet(isChecked(), popup->colorGroup()), item, -1, index);
- popup->connectItem (id, this, TQT_SLOT(slotActivated()));
+ popup->connectItem (id, this, TQ_SLOT(slotActivated()));
d->popupToId[popup] = id;
d->idToPopup[id] = popup;