diff options
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); } |