diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2018-01-14 16:14:28 +0300 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2018-01-14 16:14:28 +0300 |
commit | 84802068209feabd52ae9b801abee0605c151241 (patch) | |
tree | 24835f902c9ca2d5ab8aca5989a90026001a136d | |
parent | 0d626df4325be7ac43a8bf99a549665e049c93bd (diff) |
NewsAggregator: added replace symbol
-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 4a92551688..367ae54538 100644 --- a/plugins/NewsAggregator/Src/Utils.cpp +++ b/plugins/NewsAggregator/Src/Utils.cpp @@ -468,6 +468,7 @@ LPCTSTR ClearText(CMStringW &result, const wchar_t *message) result.Replace(L"ë", L"ë"); //euml
result.Replace(L"ö", L"ö"); //ouml
result.Replace(L"ž", L"ž"); //Latin Small Letter Z With Caron
+ result.Replace(L"ʙ", L"ʙ"); //latin letter small capital b
result.Replace(L"̆", L"˘"); //Combining Breve
result.Replace(L"́", L"´"); //Combining Acute Accent острое ударение
result.Replace(L"ο", L"ό"); // greek small letter omicron with tonos
|