diff options
author | Kirill Volinsky <Mataes2007@gmail.com> | 2018-03-15 11:37:22 +0300 |
---|---|---|
committer | Kirill Volinsky <Mataes2007@gmail.com> | 2018-03-15 11:37:22 +0300 |
commit | 6f49ccc655bdbb1ac53133921555727e697c2b64 (patch) | |
tree | 1d0f585f5218bd4431d8d4cfe09677507e775ece /plugins/NewsAggregator | |
parent | dad59528ccd770301b29c7db8148ff8ab8e89c92 (diff) |
NewsAggregator: added symbol to replace
Diffstat (limited to 'plugins/NewsAggregator')
-rw-r--r-- | plugins/NewsAggregator/Src/Utils.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/NewsAggregator/Src/Utils.cpp b/plugins/NewsAggregator/Src/Utils.cpp index 75bb109315..b6da7a9e0a 100644 --- a/plugins/NewsAggregator/Src/Utils.cpp +++ b/plugins/NewsAggregator/Src/Utils.cpp @@ -403,6 +403,7 @@ LPCTSTR ClearText(CMStringW &result, const wchar_t *message) result.Replace(L"£", L"£"); //pound
result.Replace(L"²", L"²"); //sup2
result.Replace(L"ä", L"ä"); //auml
+ result.Replace(L"é", L"é"); //latin small letter e with acute
result.Replace(L"ë", L"ë"); //euml
result.Replace(L"ö", L"ö"); //ouml
result.Replace(L"ž", L"ž"); //Latin Small Letter Z With Caron
|