diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-10-01 20:19:52 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-10-01 20:19:52 +0000 |
| commit | 4bd77573e83df590f114bbe845506458d2981d50 (patch) | |
| tree | 037623218343f21700fd6b4708e483df24791bef /src/ui/playlistitem.cpp | |
| parent | b1e7189981908fdc53de008f6929220529043b59 (diff) | |
| download | qmmp-4bd77573e83df590f114bbe845506458d2981d50.tar.gz qmmp-4bd77573e83df590f114bbe845506458d2981d50.tar.bz2 qmmp-4bd77573e83df590f114bbe845506458d2981d50.zip | |
decoder api changes
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@573 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/ui/playlistitem.cpp')
| -rw-r--r-- | src/ui/playlistitem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/playlistitem.cpp b/src/ui/playlistitem.cpp index 0759e3354..b5321c8ca 100644 --- a/src/ui/playlistitem.cpp +++ b/src/ui/playlistitem.cpp @@ -47,7 +47,7 @@ PlayListItem::PlayListItem(const QString& path) : SongInfo(), m_flag(FREE) if (m_use_meta && !path.startsWith("http://")) { - m_info = Decoder::getFileInfo(path); + m_info = Decoder::createFileInfo(path); readMetadata(); } else if (path.startsWith("http://") && m_fullStreamPath) @@ -111,7 +111,7 @@ void PlayListItem::updateTags() delete m_info; m_info = 0; } - m_info = Decoder::getFileInfo(path()); + m_info = Decoder::createFileInfo(path()); readMetadata(); } |
