diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-04-30 09:48:54 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-04-30 09:48:54 +0000 |
| commit | ad55f26545292e0dc2ffc66a43f8bd3b74eb32bc (patch) | |
| tree | 6ea1049499c18cc36a01f059450ca6ff5ce38f75 /src/qmmpui/playlisttrack.cpp | |
| parent | 099c570384563311d03a97fa975319aeafe62adc (diff) | |
| download | qmmp-ad55f26545292e0dc2ffc66a43f8bd3b74eb32bc.tar.gz qmmp-ad55f26545292e0dc2ffc66a43f8bd3b74eb32bc.tar.bz2 qmmp-ad55f26545292e0dc2ffc66a43f8bd3b74eb32bc.zip | |
fixed duration formatting
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7938 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlisttrack.cpp')
| -rw-r--r-- | src/qmmpui/playlisttrack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmmpui/playlisttrack.cpp b/src/qmmpui/playlisttrack.cpp index d182e9945..76b12f65c 100644 --- a/src/qmmpui/playlisttrack.cpp +++ b/src/qmmpui/playlisttrack.cpp @@ -228,7 +228,7 @@ const QString PlayListTrack::formattedLength() { if(m_length > 0 && m_formattedLength.isEmpty()) { - m_formattedLength = MetaDataFormatter::formatLength(m_length); + m_formattedLength = MetaDataFormatter::formatDuration(m_length); } else if(m_length == 0) m_formattedLength.clear(); |
