aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-04-27 16:55:20 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-04-27 16:55:20 +0000
commitd33ea6f849241f163c430d49e2920bf0e66dc35e (patch)
treecfba8decbdcee6d9b617bbde0bfede5a35750a96 /src
parent1a72354c0765d2ac473ce052ca507963ce0b007c (diff)
downloadqmmp-d33ea6f849241f163c430d49e2920bf0e66dc35e.tar.gz
qmmp-d33ea6f849241f163c430d49e2920bf0e66dc35e.tar.bz2
qmmp-d33ea6f849241f163c430d49e2920bf0e66dc35e.zip
refactoring
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8798 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
-rw-r--r--src/plugins/Input/cue/decodercuefactory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/Input/cue/decodercuefactory.cpp b/src/plugins/Input/cue/decodercuefactory.cpp
index 386d3e94d..6eaf3e25e 100644
--- a/src/plugins/Input/cue/decodercuefactory.cpp
+++ b/src/plugins/Input/cue/decodercuefactory.cpp
@@ -55,16 +55,16 @@ Decoder *DecoderCUEFactory::create(const QString &path, QIODevice *input)
QList<TrackInfo *> DecoderCUEFactory::createPlayList(const QString &path, TrackInfo::Parts parts, QStringList *ignoredPaths)
{
Q_UNUSED(parts);
- CueFile parser(path);
+ CueFile cueFile(path);
if(path.contains("://"))
{
int track = path.section("#", -1).toInt();
- return parser.createPlayList(track);
+ return cueFile.createPlayList(track);
}
else
{
- ignoredPaths->append(parser.dataFilePaths());
- return parser.createPlayList();
+ ignoredPaths->append(cueFile.dataFilePaths());
+ return cueFile.createPlayList();
}
}