summaryrefslogtreecommitdiffstats
path: root/src/progressdlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-28 16:37:45 +0900
committerMichele Calgaro <[email protected]>2023-12-28 16:37:45 +0900
commit11f3716a1c82b43f92dc32083101558f3ec47f27 (patch)
tree0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/progressdlg.cpp
parentd399e3a2c6c365c540fe67bc648bacefe4cca707 (diff)
downloadkscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz
kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/progressdlg.cpp')
-rw-r--r--src/progressdlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/progressdlg.cpp b/src/progressdlg.cpp
index 37e0487..d50b9e2 100644
--- a/src/progressdlg.cpp
+++ b/src/progressdlg.cpp
@@ -46,7 +46,7 @@ ProgressDlg::ProgressDlg(const TQString& sCaption, const TQString& sText,
m_pIdleTimer = new TQTimer(this);
// Display a busy indicator by increasing the value of the idle counter
- connect (m_pIdleTimer, SIGNAL(timeout()), this, SLOT(slotShowBusy()));
+ connect (m_pIdleTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotShowBusy()));
}
/**