aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Engines/mplayer/mplayerenginefactory.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-09-08 11:49:28 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-09-08 11:49:28 +0000
commit463f4e95cff0e100b4c8c8b5378cfe1b2604c138 (patch)
treecb73da70a910165d5715d6fc20c11587454c4133 /src/plugins/Engines/mplayer/mplayerenginefactory.cpp
parent1e31fe896524513577911e382897b841e40a4814 (diff)
downloadqmmp-463f4e95cff0e100b4c8c8b5378cfe1b2604c138.tar.gz
qmmp-463f4e95cff0e100b4c8c8b5378cfe1b2604c138.tar.bz2
qmmp-463f4e95cff0e100b4c8c8b5378cfe1b2604c138.zip
fixed possible regressions
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9068 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Engines/mplayer/mplayerenginefactory.cpp')
-rw-r--r--src/plugins/Engines/mplayer/mplayerenginefactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Engines/mplayer/mplayerenginefactory.cpp b/src/plugins/Engines/mplayer/mplayerenginefactory.cpp
index 33493dfa4..2acd493a7 100644
--- a/src/plugins/Engines/mplayer/mplayerenginefactory.cpp
+++ b/src/plugins/Engines/mplayer/mplayerenginefactory.cpp
@@ -43,7 +43,7 @@ EngineProperties MplayerEngineFactory::properties() const
bool MplayerEngineFactory::supports(const QString &source) const
{
- QStringList filters = MplayerInfo::filters();
+ const QStringList filters = MplayerInfo::filters();
for(const QString &filter : qAsConst(filters))
{
QRegExp regexp(filter, Qt::CaseInsensitive, QRegExp::Wildcard);