diff options
Diffstat (limited to 'src/svnfrontend/stopdlg.cpp')
-rw-r--r-- | src/svnfrontend/stopdlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svnfrontend/stopdlg.cpp b/src/svnfrontend/stopdlg.cpp index f5151cf..9957570 100644 --- a/src/svnfrontend/stopdlg.cpp +++ b/src/svnfrontend/stopdlg.cpp @@ -184,11 +184,11 @@ void StopDlg::slotNetProgres(long long int current, long long int max) TQString s1 = helpers::ByteToString()(current); if (max > -1 && max != m_NetBar->totalSteps()) { TQString s2 = helpers::ByteToString()(max); - m_NetBar->setFormat(i18n("%1 of %2").tqarg(s1).tqarg(s2)); + m_NetBar->setFormat(i18n("%1 of %2").arg(s1).arg(s2)); m_NetBar->setTotalSteps(max); } if (max == -1) { - m_NetBar->setFormat(i18n("%1 transferred.").tqarg(s1)); + m_NetBar->setFormat(i18n("%1 transferred.").arg(s1)); m_NetBar->setTotalSteps(current+1); } m_NetBar->setValue(current); |