diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-12-22 09:13:31 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-12-22 09:13:31 +0000 |
| commit | 0e9d21145a61416615419dc97a801a82f3e97fe6 (patch) | |
| tree | ab10a526c10a2ba6b38420f5907c9d11b6f88dff /src/qmmpui/playlistmodel.cpp | |
| parent | c7848bc541b316324ed3fe1ff8f5613ccf13a142 (diff) | |
| download | qmmp-0e9d21145a61416615419dc97a801a82f3e97fe6.tar.gz qmmp-0e9d21145a61416615419dc97a801a82f3e97fe6.tar.bz2 qmmp-0e9d21145a61416615419dc97a801a82f3e97fe6.zip | |
changed PlayListParser class
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3083 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistmodel.cpp')
| -rw-r--r-- | src/qmmpui/playlistmodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmmpui/playlistmodel.cpp b/src/qmmpui/playlistmodel.cpp index 30f7cfe3c..6f67e6e22 100644 --- a/src/qmmpui/playlistmodel.cpp +++ b/src/qmmpui/playlistmodel.cpp @@ -840,7 +840,7 @@ void PlayListModel::doCurrentVisibleRequest() void PlayListModel::loadPlaylist(const QString &f_name) { - PlayListFormat* prs = PlayListParser::instance()->findByPath(f_name); + PlayListFormat* prs = PlayListParser::findByPath(f_name); if(!prs) { //qWarning("PlayListModel: unsupported playlist format"); @@ -874,7 +874,7 @@ void PlayListModel::loadPlaylist(const QString &f_name) void PlayListModel::savePlaylist(const QString & f_name) { - PlayListFormat* prs = PlayListParser::instance()->findByPath(f_name); + PlayListFormat* prs = PlayListParser::findByPath(f_name); if (prs) { QFile file(f_name); |
