diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-03-07 22:50:17 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-03-07 22:50:17 +0000 |
| commit | 008b4d4e4a0675388955ef805b73fe52a3fc906c (patch) | |
| tree | b37d5dfc5d4afbf27de9fad89aaf977bd3c6b03a /src/plugins | |
| parent | 0b46e2db06ec1bbfc3aee819787386ace9dad66c (diff) | |
| download | qmmp-008b4d4e4a0675388955ef805b73fe52a3fc906c.tar.gz qmmp-008b4d4e4a0675388955ef805b73fe52a3fc906c.tar.bz2 qmmp-008b4d4e4a0675388955ef805b73fe52a3fc906c.zip | |
fixed regression
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@828 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/General/notifier/popupwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/General/notifier/popupwidget.cpp b/src/plugins/General/notifier/popupwidget.cpp index f6a7c7e73..a83508a3a 100644 --- a/src/plugins/General/notifier/popupwidget.cpp +++ b/src/plugins/General/notifier/popupwidget.cpp @@ -86,7 +86,7 @@ void PopupWidget::showMetaData() if (core->totalTime() > 0) { title.append(" "); - title.append(QString("(%1:%2)").arg(core->totalTime()/60000).arg(core->totalTime()%60000, 2, 10, QChar('0'))); + title.append(QString("(%1:%2)").arg(core->totalTime()/60000).arg(core->totalTime()%60000/1000, 2, 10, QChar('0'))); } m_label1->setText("<b>" + title + "</b>"); |
