From 7acba956ed3ef3528c6fafe7cb38d94d796e6a4a Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Mon, 13 Oct 2008 16:03:35 +0000 Subject: CUE plugin: additional metadata support, CUE codepage settings git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@583 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/cue/decoder_cue.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/Input/cue/decoder_cue.cpp') diff --git a/src/plugins/Input/cue/decoder_cue.cpp b/src/plugins/Input/cue/decoder_cue.cpp index 3ebc0fdca..8e570e478 100644 --- a/src/plugins/Input/cue/decoder_cue.cpp +++ b/src/plugins/Input/cue/decoder_cue.cpp @@ -50,14 +50,14 @@ bool DecoderCUE::initialize() CUEParser parser(QUrl(path).path()); if (parser.count() == 0) { - qWarning("DecoderCUE: Invalid cue file"); + qWarning("DecoderCUE: invalid cue file"); return FALSE; } int track = path.section("#", -1).toInt(); path = parser.filePath(); if (!QFile::exists(path)) { - qWarning("DecoderCUE: File \"%s\" doesn't exist", qPrintable(path)); + qWarning("DecoderCUE: file \"%s\" doesn't exist", qPrintable(path)); return FALSE; } DecoderFactory *df = Decoder::findByPath(path); -- cgit v1.2.3-13-gbd6f