diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:31:17 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-04 10:31:17 +0900 |
commit | c650254e1855d383dcafd15d18be20becc3b2253 (patch) | |
tree | 9c221c2e920b1f8e9098c6047d948833277659de /src/statusbar.cpp | |
parent | 3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (diff) | |
download | tellico-c650254e1855d383dcafd15d18be20becc3b2253.tar.gz tellico-c650254e1855d383dcafd15d18be20becc3b2253.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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(); } */ |