From 095abc2e238556b3b89f55a6c7885450e3e3385b Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Mon, 14 Sep 2009 10:38:21 +0000 Subject: enabled cue support git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1221 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/cue/decodercuefactory.cpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/plugins/Input/cue/decodercuefactory.cpp') diff --git a/src/plugins/Input/cue/decodercuefactory.cpp b/src/plugins/Input/cue/decodercuefactory.cpp index ac057db9b..a25e930f7 100644 --- a/src/plugins/Input/cue/decodercuefactory.cpp +++ b/src/plugins/Input/cue/decodercuefactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Ilya Kotov * + * Copyright (C) 2008-2009 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -53,12 +53,11 @@ const DecoderProperties DecoderCUEFactory::properties() const return properties; } -Decoder *DecoderCUEFactory::create(QObject *parent, QIODevice *input, - Output *output, const QString &url) +Decoder *DecoderCUEFactory::create(QIODevice *input, const QString &path) { - Q_UNUSED(input); - Q_UNUSED(output); - return new DecoderCUE(parent, this, url); + //Q_UNUSED(input); + //Q_UNUSED(output); + return new DecoderCUE(path, input); } QList DecoderCUEFactory::createPlayList(const QString &fileName, bool useMetaData) @@ -68,8 +67,10 @@ QList DecoderCUEFactory::createPlayList(const QString &fileName, boo return parser.createPlayList(); } -QObject* DecoderCUEFactory::showDetails(QWidget *, const QString &) +MetaDataModel* DecoderCUEFactory::createMetaDataModel(const QString &path, QObject *parent) { + Q_UNUSED(path); + Q_UNUSED(parent); return 0; } -- cgit v1.2.3-13-gbd6f