Update test to prettier file extension wildcard syntax.

This commit is contained in:
Jeff Young 2020-07-17 21:22:28 +01:00
parent 3fd0a3f842
commit d1da053d2e
1 changed files with 4 additions and 4 deletions

View File

@ -49,13 +49,13 @@ struct ExtWildcardFilterCase
const static std::vector<ExtWildcardFilterCase> ext_wildcard_cases = { const static std::vector<ExtWildcardFilterCase> ext_wildcard_cases = {
{ {
{ "png" }, { "png" },
" ( *.png)|*.png", " (*.png)|*.png",
" ( *.png)|*.[pP][nN][gG]", " (*.png)|*.[pP][nN][gG]",
}, },
{ {
{ "png", "gif" }, { "png", "gif" },
" ( *.png *.gif)|*.png;*.gif", " (*.png; *.gif)|*.png;*.gif",
" ( *.png *.gif)|*.[pP][nN][gG];*.[gG][iI][fF]", " (*.png; *.gif)|*.[pP][nN][gG];*.[gG][iI][fF]",
}, },
}; };