diff options
Diffstat (limited to 'src/statusbar.cpp')
-rw-r--r-- | src/statusbar.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/statusbar.cpp b/src/statusbar.cpp index ffb4def..41b37ee 100644 --- a/src/statusbar.cpp +++ b/src/statusbar.cpp @@ -54,8 +54,8 @@ StatusBar::StatusBar(TQWidget* parent_) : KStatusBar(parent_) { m_cancelButton->hide(); ProgressManager* pm = ProgressManager::self(); - connect(pm, TQT_SIGNAL(signalTotalProgress(uint)), TQT_SLOT(slotProgress(uint))); - connect(m_cancelButton, TQT_SIGNAL(clicked()), pm, TQT_SLOT(slotCancelAll())); + connect(pm, TQ_SIGNAL(signalTotalProgress(uint)), TQ_SLOT(slotProgress(uint))); + connect(m_cancelButton, TQ_SIGNAL(clicked()), pm, TQ_SLOT(slotCancelAll())); } void StatusBar::polish() { @@ -110,10 +110,10 @@ void StatusBar::slotUpdate() { /* myDebug() << "StatusBar::slotUpdate() - " << m_progress->isShown() << endl; if(m_progressBox->isEmpty()) { - TQTimer::singleShot(0, m_progress, TQT_SLOT(hide())); + TQTimer::singleShot(0, m_progress, TQ_SLOT(hide())); // m_progressBox->hide(); } else { - TQTimer::singleShot(0, m_progress, TQT_SLOT(show())); + TQTimer::singleShot(0, m_progress, TQ_SLOT(show())); // m_progressBox->show(); } */ |