diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-09-14 10:38:21 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-09-14 10:38:21 +0000 |
| commit | 095abc2e238556b3b89f55a6c7885450e3e3385b (patch) | |
| tree | 6c2afff150a179e640d6579828a98108850a981a /src/plugins/Input/cue/decodercuefactory.cpp | |
| parent | a21018491ad5f53521b63dba062e2d7e87efc1c5 (diff) | |
| download | qmmp-095abc2e238556b3b89f55a6c7885450e3e3385b.tar.gz qmmp-095abc2e238556b3b89f55a6c7885450e3e3385b.tar.bz2 qmmp-095abc2e238556b3b89f55a6c7885450e3e3385b.zip | |
enabled cue support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1221 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/cue/decodercuefactory.cpp')
| -rw-r--r-- | src/plugins/Input/cue/decodercuefactory.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
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<FileInfo *> DecoderCUEFactory::createPlayList(const QString &fileName, bool useMetaData) @@ -68,8 +67,10 @@ QList<FileInfo *> 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; } |
