From 62904593cc27e86a32aa07f43108a160ec52371d Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 26 Jul 2016 08:44:05 +0000 Subject: using DecodeFactory::properties() for factory search git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6602 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/cue/cueparser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/Input/cue/cueparser.cpp') diff --git a/src/plugins/Input/cue/cueparser.cpp b/src/plugins/Input/cue/cueparser.cpp index 7383e4111..893d0627f 100644 --- a/src/plugins/Input/cue/cueparser.cpp +++ b/src/plugins/Input/cue/cueparser.cpp @@ -307,7 +307,7 @@ qint64 CUEParser::getLength(const QString &str) QString CUEParser::getDirtyPath(const QString &cue_path, const QString &path) { - if((QFile::exists(path) && Decoder::findByPath(path)) || !m_dirty) + if((QFile::exists(path) && Decoder::findByFilePath(path)) || !m_dirty) return path; QStringList candidates; @@ -316,7 +316,7 @@ QString CUEParser::getDirtyPath(const QString &cue_path, const QString &path) { it.next(); QString f = it.filePath(); - if ((f != cue_path) && Decoder::findByPath(f)) + if ((f != cue_path) && Decoder::findByFilePath(f)) candidates.push_back(f); } -- cgit v1.2.3-13-gbd6f