diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-08-04 21:46:14 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-08-04 21:46:14 +0000 |
| commit | 89e33b8d34bfa667e69a3422b9b73806d83e53bf (patch) | |
| tree | 00434d6874843504f6d5a4fcb30d303c8845a757 /src/plugins/Input/mpc/decodermpcfactory.cpp | |
| parent | c40c1ba38df9efce07a9f8372e6d357ff3c5d9b6 (diff) | |
| download | qmmp-89e33b8d34bfa667e69a3422b9b73806d83e53bf.tar.gz qmmp-89e33b8d34bfa667e69a3422b9b73806d83e53bf.tar.bz2 qmmp-89e33b8d34bfa667e69a3422b9b73806d83e53bf.zip | |
mpc: fixed recent api support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8224 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/mpc/decodermpcfactory.cpp')
| -rw-r--r-- | src/plugins/Input/mpc/decodermpcfactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Input/mpc/decodermpcfactory.cpp b/src/plugins/Input/mpc/decodermpcfactory.cpp index d0664d249..54a3c9e24 100644 --- a/src/plugins/Input/mpc/decodermpcfactory.cpp +++ b/src/plugins/Input/mpc/decodermpcfactory.cpp @@ -104,9 +104,9 @@ QList<TrackInfo *> DecoderMPCFactory::createPlayList(const QString &path, TrackI return QList<TrackInfo*>() << info; } -MetaDataModel* DecoderMPCFactory::createMetaDataModel(const QString &path, QObject *parent) +MetaDataModel* DecoderMPCFactory::createMetaDataModel(const QString &path, bool readOnly, QObject *parent) { - return new MPCMetaDataModel(path, parent); + return new MPCMetaDataModel(path, readOnly, parent); } void DecoderMPCFactory::showSettings(QWidget *) |
