summaryrefslogtreecommitdiffstats
path: root/src/urlnavigatorbutton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/urlnavigatorbutton.cpp')
-rw-r--r--src/urlnavigatorbutton.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/urlnavigatorbutton.cpp b/src/urlnavigatorbutton.cpp
index fbfa02e..d7de1ff 100644
--- a/src/urlnavigatorbutton.cpp
+++ b/src/urlnavigatorbutton.cpp
@@ -46,11 +46,11 @@ URLNavigatorButton::URLNavigatorButton(int index, URLNavigator* parent) :
setAcceptDrops(true);
setMinimumWidth(arrowWidth());
setIndex(index);
- connect(this, TQT_SIGNAL(clicked()), this, TQT_SLOT(updateNavigatorURL()));
+ connect(this, TQ_SIGNAL(clicked()), this, TQ_SLOT(updateNavigatorURL()));
m_popupDelay = new TQTimer(this);
- connect(m_popupDelay, TQT_SIGNAL(timeout()), this, TQT_SLOT(startListJob()));
- connect(this, TQT_SIGNAL(pressed()), this, TQT_SLOT(startPopupDelay()));
+ connect(m_popupDelay, TQ_SIGNAL(timeout()), this, TQ_SLOT(startListJob()));
+ connect(this, TQ_SIGNAL(pressed()), this, TQ_SLOT(startPopupDelay()));
}
URLNavigatorButton::~URLNavigatorButton()
@@ -263,9 +263,9 @@ void URLNavigatorButton::startListJob()
m_listJob = TDEIO::listDir(url, false, false);
m_subdirs.clear(); // just to be ++safe
- connect(m_listJob, TQT_SIGNAL(entries(TDEIO::Job*, const TDEIO::UDSEntryList &)),
- this, TQT_SLOT(entriesList(TDEIO::Job*, const TDEIO::UDSEntryList&)));
- connect(m_listJob, TQT_SIGNAL(result(TDEIO::Job*)), this, TQT_SLOT(listJobFinished(TDEIO::Job*)));
+ connect(m_listJob, TQ_SIGNAL(entries(TDEIO::Job*, const TDEIO::UDSEntryList &)),
+ this, TQ_SLOT(entriesList(TDEIO::Job*, const TDEIO::UDSEntryList&)));
+ connect(m_listJob, TQ_SIGNAL(result(TDEIO::Job*)), this, TQ_SLOT(listJobFinished(TDEIO::Job*)));
}
void URLNavigatorButton::entriesList(TDEIO::Job* job, const TDEIO::UDSEntryList& entries)