From 1199a215dda2baeaadc38baeaa68e6b98e465ce8 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 15 Oct 2013 16:46:47 +0000 Subject: fixed case sensitivity git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3788 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/flac/replaygainreader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/Input/flac/replaygainreader.cpp') diff --git a/src/plugins/Input/flac/replaygainreader.cpp b/src/plugins/Input/flac/replaygainreader.cpp index f8e5c9469..4d14ed063 100644 --- a/src/plugins/Input/flac/replaygainreader.cpp +++ b/src/plugins/Input/flac/replaygainreader.cpp @@ -27,13 +27,13 @@ ReplayGainReader::ReplayGainReader(const QString &path) { - if(path.endsWith(".flac")) + if(path.endsWith(".flac"), Qt::CaseInsensitive) { TagLib::FLAC::File fileRef(path.toLocal8Bit ().constData()); if(fileRef.xiphComment()) readVorbisComment(fileRef.xiphComment()); } - else if(path.endsWith(".oga")) + else if(path.endsWith(".oga"), Qt::CaseInsensitive) { TagLib::Ogg::FLAC::File fileRef(path.toLocal8Bit ().constData()); if(fileRef.tag()) -- cgit v1.2.3-13-gbd6f