diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-05-30 20:59:19 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-05-30 20:59:19 +0000 |
| commit | 7071ac694b8325f0ddd9ed6318c513171f40dbd5 (patch) | |
| tree | 999bcb5ce59b1672c8957554fe5e24ea943d22e5 /src/plugins/Engines/mplayer/mplayerenginefactory.cpp | |
| parent | fd3ae434ba13221b49d0ddbeba6f4d63f1a27c62 (diff) | |
| download | qmmp-7071ac694b8325f0ddd9ed6318c513171f40dbd5.tar.gz qmmp-7071ac694b8325f0ddd9ed6318c513171f40dbd5.tar.bz2 qmmp-7071ac694b8325f0ddd9ed6318c513171f40dbd5.zip | |
fixed mplayer plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7984 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Engines/mplayer/mplayerenginefactory.cpp')
| -rw-r--r-- | src/plugins/Engines/mplayer/mplayerenginefactory.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/Engines/mplayer/mplayerenginefactory.cpp b/src/plugins/Engines/mplayer/mplayerenginefactory.cpp index 3e90dba9c..c145aabe1 100644 --- a/src/plugins/Engines/mplayer/mplayerenginefactory.cpp +++ b/src/plugins/Engines/mplayer/mplayerenginefactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2015 by Ilya Kotov * + * Copyright (C) 2008-2018 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -59,11 +59,11 @@ AbstractEngine *MplayerEngineFactory::create(QObject *parent) return new MplayerEngine(parent); } -QList<FileInfo *> MplayerEngineFactory::createPlayList(const QString &fileName, bool useMetaData, QStringList *) +QList<TrackInfo *> MplayerEngineFactory::createPlayList(const QString &path, TrackInfo::Parts parts, QStringList *) { - Q_UNUSED(useMetaData); - QList<FileInfo *> info; - info << MplayerInfo::createFileInfo(fileName); + Q_UNUSED(parts); + QList<TrackInfo *> info; + info << MplayerInfo::createTrackInfo(path); return info; } |
