diff options
| author | Zack Rusin <[email protected]> | 2006-12-04 05:46:34 +0000 |
|---|---|---|
| committer | Zack Rusin <[email protected]> | 2006-12-04 05:46:34 +0000 |
| commit | 01f577fda1b2ee522a0e87edab7c079c8b553860 (patch) | |
| tree | 20329ceebb09383781c25ed830061b7dead90f87 /src/dolphinstatusbar.cpp | |
| parent | c94276725b1452d9f899dec192a8e66ecb9a516d (diff) | |
reducing a little bit the number of deprecation warnings
svn path=/trunk/playground/utils/dolphin/; revision=610300
Diffstat (limited to 'src/dolphinstatusbar.cpp')
| -rw-r--r-- | src/dolphinstatusbar.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dolphinstatusbar.cpp b/src/dolphinstatusbar.cpp index 7f5a73fea..6d7df4511 100644 --- a/src/dolphinstatusbar.cpp +++ b/src/dolphinstatusbar.cpp @@ -116,7 +116,8 @@ void DolphinStatusBar::setProgress(int percent) m_progress = percent; m_progressBar->setValue(m_progress); - m_progressTimer->start(300, true); + m_progressTimer->setSingleShot(true); + m_progressTimer->start(300); const QString msg(m_messageLabel->text()); if (msg.isEmpty() || (msg == m_defaultText)) { |
