aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/cue/decodercuefactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/cue/decodercuefactory.cpp')
-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();
}
}