aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/sndfile
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-07-21 10:30:40 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-07-21 10:30:40 +0000
commit0d8981c06d0debc19beff2440d8804c63e62151b (patch)
treed7929522f5caaa31be12666fa43f9ddf294738aa /src/plugins/Input/sndfile
parent5cc2fd08ae492ac9eba82675326475f88e40d8d2 (diff)
downloadqmmp-0d8981c06d0debc19beff2440d8804c63e62151b.tar.gz
qmmp-0d8981c06d0debc19beff2440d8804c63e62151b.tar.bz2
qmmp-0d8981c06d0debc19beff2440d8804c63e62151b.zip
fixed gcc warning
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6584 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/sndfile')
-rw-r--r--src/plugins/Input/sndfile/decodersndfilefactory.cpp2
-rw-r--r--src/plugins/Input/sndfile/decodersndfilefactory.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Input/sndfile/decodersndfilefactory.cpp b/src/plugins/Input/sndfile/decodersndfilefactory.cpp
index 90cb00711..c09958d39 100644
--- a/src/plugins/Input/sndfile/decodersndfilefactory.cpp
+++ b/src/plugins/Input/sndfile/decodersndfilefactory.cpp
@@ -77,7 +77,7 @@ const DecoderProperties DecoderSndFileFactory::properties() const
return properties;
}
-Decoder *DecoderSndFileFactory::create(const QString &path, QIODevice *input)
+Decoder *DecoderSndFileFactory::create(const QString &, QIODevice *input)
{
return new DecoderSndFile(input);
}
diff --git a/src/plugins/Input/sndfile/decodersndfilefactory.h b/src/plugins/Input/sndfile/decodersndfilefactory.h
index e4a15d1fb..3d3d5aca9 100644
--- a/src/plugins/Input/sndfile/decodersndfilefactory.h
+++ b/src/plugins/Input/sndfile/decodersndfilefactory.h
@@ -40,7 +40,7 @@ public:
bool supports(const QString &source) const;
bool canDecode(QIODevice *input) const;
const DecoderProperties properties() const;
- Decoder *create(const QString &path, QIODevice *);
+ Decoder *create(const QString &, QIODevice *);
QList<FileInfo *> createPlayList(const QString &fileName, bool useMetaData, QStringList *);
MetaDataModel* createMetaDataModel(const QString &path, QObject *parent = 0);
void showSettings(QWidget *parent);