From f03ddc53e2767bb7f88374996bb192275de12e51 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 5 Jan 2024 10:33:17 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac) --- src/urlnavigatorbutton.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/urlnavigatorbutton.cpp') 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) -- cgit v1.2.3