diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:33:17 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:57:28 +0900 |
| commit | f03ddc53e2767bb7f88374996bb192275de12e51 (patch) | |
| tree | 9612fb1e8b8af0874506f53c77b2a9b748f31bb9 /src/urlnavigatorbutton.cpp | |
| parent | a822e3e4661711452c3cb35d5efaae67c56a071a (diff) | |
| download | dolphin-f03ddc53.tar.gz dolphin-f03ddc53.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac)
Diffstat (limited to 'src/urlnavigatorbutton.cpp')
| -rw-r--r-- | src/urlnavigatorbutton.cpp | 12 |
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) |
