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/wavpack/cueparser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/Input/wavpack/cueparser.cpp') diff --git a/src/plugins/Input/wavpack/cueparser.cpp b/src/plugins/Input/wavpack/cueparser.cpp index a8a176eb4..0554370c6 100644 --- a/src/plugins/Input/wavpack/cueparser.cpp +++ b/src/plugins/Input/wavpack/cueparser.cpp @@ -216,7 +216,7 @@ qint64 CUEParser::getLength(const QString &str) QString CUEParser::getDirtyPath(const QString &cue, const QString &path) { - if (Decoder::findByPath(path) || ! m_dirty) + if (Decoder::findByFilePath(path) || ! m_dirty) return path; QStringList candidates; @@ -225,7 +225,7 @@ QString CUEParser::getDirtyPath(const QString &cue, const QString &path) { it.next(); QString f = it.filePath(); - if ((f != cue) && Decoder::findByPath(f)) + if ((f != cue) && Decoder::findByFilePath(f)) candidates.push_back(f); } -- cgit v1.2.3-13-gbd6f