From 7071ac694b8325f0ddd9ed6318c513171f40dbd5 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Wed, 30 May 2018 20:59:19 +0000 Subject: fixed mplayer plugin git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7984 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Engines/mplayer/mplayerenginefactory.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/plugins/Engines/mplayer/mplayerenginefactory.cpp') 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 MplayerEngineFactory::createPlayList(const QString &fileName, bool useMetaData, QStringList *) +QList MplayerEngineFactory::createPlayList(const QString &path, TrackInfo::Parts parts, QStringList *) { - Q_UNUSED(useMetaData); - QList info; - info << MplayerInfo::createFileInfo(fileName); + Q_UNUSED(parts); + QList info; + info << MplayerInfo::createTrackInfo(path); return info; } -- cgit v1.2.3-13-gbd6f