summaryrefslogtreecommitdiffstats
path: root/akregator/src/addfeeddialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/addfeeddialog.cpp')
-rw-r--r--akregator/src/addfeeddialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/akregator/src/addfeeddialog.cpp b/akregator/src/addfeeddialog.cpp
index 24dc8b49..a7b88a11 100644
--- a/akregator/src/addfeeddialog.cpp
+++ b/akregator/src/addfeeddialog.cpp
@@ -53,7 +53,7 @@ AddFeedDialog::AddFeedDialog(TQWidget *parent, const char *name)
: KDialogBase(KDialogBase::Swallow, TQt::WStyle_DialogBorder, parent, name, true, i18n("Add Feed"), KDialogBase::Ok|KDialogBase::Cancel)
{
widget = new AddFeedWidget(this);
- connect(widget->urlEdit, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(textChanged(const TQString&)));
+ connect(widget->urlEdit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(textChanged(const TQString&)));
enableButtonOK(false);
setMainWidget(widget);
}
@@ -85,12 +85,12 @@ void AddFeedDialog::slotOk( )
widget->statusLabel->setText( i18n("Downloading %1").arg(feedURL) );
- connect( feed, TQT_SIGNAL(fetched(Feed* )),
- this, TQT_SLOT(fetchCompleted(Feed *)) );
- connect( feed, TQT_SIGNAL(fetchError(Feed* )),
- this, TQT_SLOT(fetchError(Feed *)) );
- connect( feed, TQT_SIGNAL(fetchDiscovery(Feed* )),
- this, TQT_SLOT(fetchDiscovery(Feed *)) );
+ connect( feed, TQ_SIGNAL(fetched(Feed* )),
+ this, TQ_SLOT(fetchCompleted(Feed *)) );
+ connect( feed, TQ_SIGNAL(fetchError(Feed* )),
+ this, TQ_SLOT(fetchError(Feed *)) );
+ connect( feed, TQ_SIGNAL(fetchDiscovery(Feed* )),
+ this, TQ_SLOT(fetchDiscovery(Feed *)) );
f->fetch(true);
}