diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-10-03 02:09:21 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-10-03 02:09:21 +0200 |
commit | 7ba9271dbee1e6bdfc99af25ac57dfe4721da1b1 (patch) | |
tree | f2f4e788eb9ce2d44a2e3c6d15f89265e13dcb8b /wizard | |
parent | 34bb00f6ef578162b34bf01a29f31bdc133f6126 (diff) | |
download | acritoxinstaller-7ba9271dbee1e6bdfc99af25ac57dfe4721da1b1.zip acritoxinstaller-7ba9271dbee1e6bdfc99af25ac57dfe4721da1b1.tar.gz |
fixed typo
Diffstat (limited to 'wizard')
-rw-r--r-- | wizard/installation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/installation.cpp b/wizard/installation.cpp index 8e9ceb7..c5126bf 100644 --- a/wizard/installation.cpp +++ b/wizard/installation.cpp @@ -129,7 +129,7 @@ void wpInstallation::finishedCommand(QString command) progressCurrent->setRange(0,100); progressCurrent->setValue(100); int elapsed = timer.elapsed()/1000; - QString desc = tr("The installation took %1m%2s.").arg(elapsed/60).arg(elapsed % 60, 2, QLatin1Char('0')); + QString desc = tr("The installation took %1m%2s.").arg(elapsed/60).arg(elapsed % 60, 2, 10, QLatin1Char('0')); QListWidgetItem *item = new ListItem(tr("Finished."), desc, "dialog-ok-apply"); listWidget->addItem(item); listWidget->scrollToItem(item); |