diff options
author | George Hazan <ghazan@miranda.im> | 2017-11-29 21:25:53 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-11-29 21:25:53 +0300 |
commit | cc3d5628fade322f81abad8715d3d2ab031bc8b6 (patch) | |
tree | c468e340e8506353afd71fcc34256a2f9175c7fc /plugins/SmileyAdd/src/options.cpp | |
parent | b65ebafbb15e8e69cfa5aba221b6fd9fab1f41c7 (diff) |
fixes #1044
Diffstat (limited to 'plugins/SmileyAdd/src/options.cpp')
-rw-r--r-- | plugins/SmileyAdd/src/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SmileyAdd/src/options.cpp b/plugins/SmileyAdd/src/options.cpp index b0fd12b50b..780c06c131 100644 --- a/plugins/SmileyAdd/src/options.cpp +++ b/plugins/SmileyAdd/src/options.cpp @@ -482,9 +482,9 @@ bool OptionsDialogType::BrowseForSmileyPacks(int item) wchar_t filter[512], *pfilter;
mir_wstrcpy(filter, TranslateT("Smiley packs"));
- mir_wstrcat(filter, L" (*.msl;*.asl;*.xep)");
+ mir_wstrcat(filter, L" (*.msl;*.asl)");
pfilter = filter + mir_wstrlen(filter) + 1;
- mir_wstrcpy(pfilter, L"*.msl;*.asl;*.xep");
+ mir_wstrcpy(pfilter, L"*.msl;*.asl");
pfilter = pfilter + mir_wstrlen(pfilter) + 1;
mir_wstrcpy(pfilter, TranslateT("All files"));
mir_wstrcat(pfilter, L" (*.*)");
|