diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2014-10-18 06:44:14 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2014-10-18 06:44:14 +0000 |
| commit | 18193084224f53298a44b53e48358f3a095ee1d6 (patch) | |
| tree | ebe478c9a9a7db3c5a8415988231428cbaf050c0 /src/plugins/Input/wavpack | |
| parent | d854da17a4b40a96793454a3aea25949ae9aacf1 (diff) | |
| download | qmmp-18193084224f53298a44b53e48358f3a095ee1d6.tar.gz qmmp-18193084224f53298a44b53e48358f3a095ee1d6.tar.bz2 qmmp-18193084224f53298a44b53e48358f3a095ee1d6.zip | |
fixed clang warnings
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4583 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/wavpack')
| -rw-r--r-- | src/plugins/Input/wavpack/decoder_wavpack.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Input/wavpack/decoder_wavpack.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Input/wavpack/decoder_wavpack.cpp b/src/plugins/Input/wavpack/decoder_wavpack.cpp index b96f8142b..7d870cbe1 100644 --- a/src/plugins/Input/wavpack/decoder_wavpack.cpp +++ b/src/plugins/Input/wavpack/decoder_wavpack.cpp @@ -235,7 +235,7 @@ qint64 DecoderWavPack::read(char *data, qint64 size) return wavpack_decode(data, size); } -const QString DecoderWavPack::nextURL() +const QString DecoderWavPack::nextURL() const { if(m_parser && m_track +1 <= m_parser->count()) return m_parser->trackURL(m_track + 1); diff --git a/src/plugins/Input/wavpack/decoder_wavpack.h b/src/plugins/Input/wavpack/decoder_wavpack.h index 745af1374..fcae8c298 100644 --- a/src/plugins/Input/wavpack/decoder_wavpack.h +++ b/src/plugins/Input/wavpack/decoder_wavpack.h @@ -40,7 +40,7 @@ public: int bitrate(); qint64 read(char *data, qint64 maxSize); void seek(qint64 time); - const QString nextURL(); + const QString nextURL() const; void next(); private: |
