diff options
Diffstat (limited to 'knewsticker/newssourcedlgimpl.cpp')
-rw-r--r-- | knewsticker/newssourcedlgimpl.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/knewsticker/newssourcedlgimpl.cpp b/knewsticker/newssourcedlgimpl.cpp index 83fd6e04..df463422 100644 --- a/knewsticker/newssourcedlgimpl.cpp +++ b/knewsticker/newssourcedlgimpl.cpp @@ -42,16 +42,16 @@ SuggestProgressDlg::SuggestProgressDlg(const KURL &url, TQWidget *parent, const m_progressBar->setPercentageVisible(false); m_timeoutTimer = new TQTimer(this); - connect(m_timeoutTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotTimeoutTick())); + connect(m_timeoutTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotTimeoutTick())); m_timeoutTimer->start(1000); m_xmlSrc = new XMLNewsSource; - connect(m_xmlSrc, TQT_SIGNAL(loadComplete(XMLNewsSource *, bool)), - this, TQT_SLOT(slotLoadComplete(XMLNewsSource *, bool))); + connect(m_xmlSrc, TQ_SIGNAL(loadComplete(XMLNewsSource *, bool)), + this, TQ_SLOT(slotLoadComplete(XMLNewsSource *, bool))); m_xmlSrc->loadFrom(url); - connect(NewsIconMgr::self(), TQT_SIGNAL(gotIcon(const KURL &, const TQPixmap &)), - this, TQT_SLOT(slotGotIcon(const KURL &, const TQPixmap &))); + connect(NewsIconMgr::self(), TQ_SIGNAL(gotIcon(const KURL &, const TQPixmap &)), + this, TQ_SLOT(slotGotIcon(const KURL &, const TQPixmap &))); KURL u = url; if (url.isLocalFile()) u = TQString(); @@ -99,8 +99,8 @@ NewsSourceDlgImpl::NewsSourceDlgImpl(TQWidget *parent, const char *name, bool m : NewsSourceDlg(parent, name, modal, fl), m_modified(false) { - connect(NewsIconMgr::self(), TQT_SIGNAL(gotIcon(const KURL &, const TQPixmap &)), - this, TQT_SLOT(slotGotIcon(const KURL &, const TQPixmap &))); + connect(NewsIconMgr::self(), TQ_SIGNAL(gotIcon(const KURL &, const TQPixmap &)), + this, TQ_SLOT(slotGotIcon(const KURL &, const TQPixmap &))); for (unsigned int i = 0; i < DEFAULT_SUBJECTS; i++) comboCategory->insertItem( |