From 4bd77573e83df590f114bbe845506458d2981d50 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Wed, 1 Oct 2008 20:19:52 +0000 Subject: decoder api changes git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@573 90c681e8-e032-0410-971d-27865f9a5e38 --- src/ui/playlistitem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ui') 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(); } -- cgit v1.2.3-13-gbd6f