diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:20:37 +0900 |
commit | b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/cscopefrontend.cpp | |
parent | 3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff) | |
download | kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.tar.gz kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/cscopefrontend.cpp')
-rw-r--r-- | src/cscopefrontend.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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); } |