aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/gme/decodergmefactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/gme/decodergmefactory.cpp')
-rw-r--r--src/plugins/Input/gme/decodergmefactory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/Input/gme/decodergmefactory.cpp b/src/plugins/Input/gme/decodergmefactory.cpp
index 0858b35ec..e2ef81cdc 100644
--- a/src/plugins/Input/gme/decodergmefactory.cpp
+++ b/src/plugins/Input/gme/decodergmefactory.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2010-2013 by Ilya Kotov *
+ * Copyright (C) 2010-2015 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -64,7 +64,7 @@ Decoder *DecoderGmeFactory::create(const QString &path, QIODevice *input)
return new DecoderGme(path);
}
-QList<FileInfo *> DecoderGmeFactory::createPlayList(const QString &fileName, bool useMetaData)
+QList<FileInfo *> DecoderGmeFactory::createPlayList(const QString &fileName, bool useMetaData, QStringList *ignoredFiles)
{
QList <FileInfo*> list;
GmeHelper helper;
@@ -75,7 +75,7 @@ QList<FileInfo *> DecoderGmeFactory::createPlayList(const QString &fileName, boo
path.remove("gme://");
path.remove(QRegExp("#\\d+$"));
int track = fileName.section("#", -1).toInt();
- list = createPlayList(path, true);
+ list = createPlayList(path, true, ignoredFiles);
if (list.isEmpty() || track <= 0 || track > list.count())
{
qDeleteAll(list);