diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-10-27 21:24:55 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-10-27 21:24:55 +0000 |
| commit | eb05b493c49bac7101b778fba0235ec58daf068d (patch) | |
| tree | 66c33ed25cd4c0581e2c018cece09f016e0e308f /src/plugins/Input/sndfile | |
| parent | 89f38b68c3a0c4a85b755006bf602d76fdc37875 (diff) | |
| download | qmmp-eb05b493c49bac7101b778fba0235ec58daf068d.tar.gz qmmp-eb05b493c49bac7101b778fba0235ec58daf068d.tar.bz2 qmmp-eb05b493c49bac7101b778fba0235ec58daf068d.zip | |
using std::initializer_list
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9534 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/sndfile')
| -rw-r--r-- | src/plugins/Input/sndfile/decodersndfilefactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Input/sndfile/decodersndfilefactory.cpp b/src/plugins/Input/sndfile/decodersndfilefactory.cpp index 1b1a1fd56..d6184be50 100644 --- a/src/plugins/Input/sndfile/decodersndfilefactory.cpp +++ b/src/plugins/Input/sndfile/decodersndfilefactory.cpp @@ -116,8 +116,8 @@ DecoderProperties DecoderSndFileFactory::properties() const { DecoderProperties properties; properties.name = tr("Sndfile Plugin"); - properties.filters << "*.wav" << "*.au" << "*.snd" << "*.aif" << "*.aiff" << "*.8svx"; - properties.filters << "*.sph" << "*.sf" << "*.voc" << "*.w64"; + properties.filters = QStringList { "*.wav", "*.au", "*.snd", "*.aif", "*.aiff", "*.8svx" }; + properties.filters = QStringList { "*.sph", "*.sf", "*.voc", "*.w64" }; properties.description = tr("PCM Files"); //properties.contentType = ""; properties.shortName = "sndfile"; |
