From eb05b493c49bac7101b778fba0235ec58daf068d Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 27 Oct 2020 21:24:55 +0000 Subject: using std::initializer_list git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9534 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/gme/decodergmefactory.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/plugins/Input/gme') diff --git a/src/plugins/Input/gme/decodergmefactory.cpp b/src/plugins/Input/gme/decodergmefactory.cpp index bbf258491..8b981b0b7 100644 --- a/src/plugins/Input/gme/decodergmefactory.cpp +++ b/src/plugins/Input/gme/decodergmefactory.cpp @@ -36,15 +36,15 @@ DecoderProperties DecoderGmeFactory::properties() const { DecoderProperties properties; properties.name = tr("GME Plugin"); - properties.filters << "*.ay" << "*.gbs" << "*.gym" << "*.hes" << "*.kss" << "*.nsf" << "*.nsfe"; - properties.filters << "*.sap" << "*.spc" << "*.vgm" << "*.vgz"; + properties.filters = QStringList { "*.ay", "*.gbs", "*.gym", "*.hes", "*.kss", "*.nsf", "*.nsfe", + "*.sap", "*.spc", "*.vgm", "*.vgz" }; properties.description = tr("Game Music Files"); //properties.contentType = ; properties.shortName = "gme"; properties.hasAbout = true; properties.hasSettings = true; properties.noInput = true; - properties.protocols << "gme"; + properties.protocols = QStringList { "gme" }; return properties; } -- cgit v1.2.3-13-gbd6f