diff options
Diffstat (limited to 'src/plugins/Input/flac')
| -rw-r--r-- | src/plugins/Input/flac/decoder_flac.cpp | 2 | ||||
| -rw-r--r-- | src/plugins/Input/flac/decoder_flac.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/Input/flac/decoder_flac.cpp b/src/plugins/Input/flac/decoder_flac.cpp index 68627a6c0..cd665b8b7 100644 --- a/src/plugins/Input/flac/decoder_flac.cpp +++ b/src/plugins/Input/flac/decoder_flac.cpp @@ -527,7 +527,7 @@ void DecoderFLAC::deinit() m_parser = 0; } -const QString DecoderFLAC::nextURL() +const QString DecoderFLAC::nextURL() const { if(m_parser && m_track +1 <= m_parser->count()) return m_parser->trackURL(m_track + 1); diff --git a/src/plugins/Input/flac/decoder_flac.h b/src/plugins/Input/flac/decoder_flac.h index 4b4a2f668..215d2d7e3 100644 --- a/src/plugins/Input/flac/decoder_flac.h +++ b/src/plugins/Input/flac/decoder_flac.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006-2008 by Ilya Kotov * + * Copyright (C) 2006-2014 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -69,7 +69,7 @@ public: int bitrate(); qint64 read(char *data, qint64 maxSize); void seek(qint64 time); - const QString nextURL(); + const QString nextURL() const; void next(); struct flac_data *data() |
