diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-10-01 20:19:52 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-10-01 20:19:52 +0000 |
| commit | 4bd77573e83df590f114bbe845506458d2981d50 (patch) | |
| tree | 037623218343f21700fd6b4708e483df24791bef /src/plugins/Input/mad | |
| parent | b1e7189981908fdc53de008f6929220529043b59 (diff) | |
| download | qmmp-4bd77573e83df590f114bbe845506458d2981d50.tar.gz qmmp-4bd77573e83df590f114bbe845506458d2981d50.tar.bz2 qmmp-4bd77573e83df590f114bbe845506458d2981d50.zip | |
decoder api changes
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@573 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/mad')
| -rw-r--r-- | src/plugins/Input/mad/decodermadfactory.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Input/mad/decodermadfactory.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Input/mad/decodermadfactory.cpp b/src/plugins/Input/mad/decodermadfactory.cpp index 0d66c68a2..c41ab6fe9 100644 --- a/src/plugins/Input/mad/decodermadfactory.cpp +++ b/src/plugins/Input/mad/decodermadfactory.cpp @@ -99,7 +99,7 @@ Decoder *DecoderMADFactory::create(QObject *parent, QIODevice *input, Output *ou return new DecoderMAD(parent, this, input, output); } -FileInfo *DecoderMADFactory::getFileInfo(const QString &source) +FileInfo *DecoderMADFactory::createFileInfo(const QString &source) { FileInfo *info = new FileInfo(); TagLib::Tag *tag = 0; diff --git a/src/plugins/Input/mad/decodermadfactory.h b/src/plugins/Input/mad/decodermadfactory.h index de51f2450..b455f360e 100644 --- a/src/plugins/Input/mad/decodermadfactory.h +++ b/src/plugins/Input/mad/decodermadfactory.h @@ -43,7 +43,7 @@ public: bool canDecode(QIODevice *input) const; const DecoderProperties properties() const; Decoder *create(QObject *, QIODevice *, Output *, const QString &); - FileInfo *getFileInfo(const QString &source); + FileInfo *createFileInfo(const QString &source); QObject* showDetails(QWidget *parent, const QString &path); void showSettings(QWidget *parent); void showAbout(QWidget *parent); |
