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-28 16:37:45 +0900 |
| commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
| tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/cscopefrontend.cpp | |
| parent | d399e3a2c6c365c540fe67bc648bacefe4cca707 (diff) | |
| download | kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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); } |
