summaryrefslogtreecommitdiffstats
path: root/src/progressdlg.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-10-08 00:13:25 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-10-08 05:14:53 +0200
commit84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch)
tree770861aa9033e1dc6c5168358194ff85b32dd429 /src/progressdlg.cpp
parent57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff)
downloadkscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz
kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip
Initial TQt conversion
Diffstat (limited to 'src/progressdlg.cpp')
-rw-r--r--src/progressdlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/progressdlg.cpp b/src/progressdlg.cpp
index 418a3c9..37e0487 100644
--- a/src/progressdlg.cpp
+++ b/src/progressdlg.cpp
@@ -34,8 +34,8 @@
* @param pParent The parent widget
* @param szName The widget's name
*/
-ProgressDlg::ProgressDlg(const QString& sCaption, const QString& sText,
- QWidget* pParent, const char* szName) :
+ProgressDlg::ProgressDlg(const TQString& sCaption, const TQString& sText,
+ TQWidget* pParent, const char* szName) :
KProgressDialog(pParent, szName, sCaption, sText, true),
m_nIdleValue(-1)
{
@@ -43,7 +43,7 @@ ProgressDlg::ProgressDlg(const QString& sCaption, const QString& sText,
setAllowCancel(false);
// Create the idle-progress timer
- m_pIdleTimer = new QTimer(this);
+ 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()));