From 11f3716a1c82b43f92dc32083101558f3ec47f27 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Dec 2023 16:37:45 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/cscopefrontend.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/cscopefrontend.cpp') diff --git a/src/cscopefrontend.cpp b/src/cscopefrontend.cpp index e272b14..1123609 100644 --- a/src/cscopefrontend.cpp +++ b/src/cscopefrontend.cpp @@ -426,7 +426,7 @@ void CscopeProgress::setProgress(int nProgress, int nTotal) m_pLabel->setPaletteForegroundColor( TDEGlobalSettings::highlightedTextColor()); - TQTimer::singleShot(1000, this, SLOT(slotShowLabel())); + TQTimer::singleShot(1000, this, TQ_SLOT(slotShowLabel())); } return; @@ -438,7 +438,7 @@ void CscopeProgress::setProgress(int nProgress, int nTotal) // on very short queries. if (m_pProgressBar == NULL) { m_pProgressBar = new TQProgressBar(m_pMainWidget); - TQTimer::singleShot(1000, this, SLOT(slotShowProgressBar())); + TQTimer::singleShot(1000, this, TQ_SLOT(slotShowProgressBar())); } // Set the current progress value @@ -490,9 +490,9 @@ void CscopeVerifier::verify() ConfigFrontend* pConf; pConf = new ConfigFrontend(true); - connect(pConf, SIGNAL(result(uint, const TQString&)), this, - SLOT(slotConfigResult(uint, const TQString&))); - connect(pConf, SIGNAL(finished(uint)), this, SLOT(slotFinished())); + connect(pConf, TQ_SIGNAL(result(uint, const TQString&)), this, + TQ_SLOT(slotConfigResult(uint, const TQString&))); + connect(pConf, TQ_SIGNAL(finished(uint)), this, TQ_SLOT(slotFinished())); pConf->run(Config().getCscopePath(), "", "", true); } -- cgit v1.2.1