Compare commits

..

2 Commits

Author SHA1 Message Date
ff7d7a908c [ios][pe] events 2018-07-12 11:15:40 +03:00
958e213f9b [x2t] Fix RemoveWhiteSpaces 2018-07-11 19:40:27 +03:00
2 changed files with 4 additions and 2 deletions

View File

@ -3403,9 +3403,10 @@ namespace SimpleTypes
std::wstring result;
for (size_t i = 0 ; i < sText.length(); i++)
{
if (XmlUtils::IsUnicodeSymbol(sText[i]) == true)
WCHAR wChar = sText[i];
if (XmlUtils::IsUnicodeSymbol(wChar) == true && wChar > 0x20)
{
result += sText[i];
result += wChar;
}
}
return result;

View File

@ -688,6 +688,7 @@
#define ASC_MENU_EVENT_TYPE_TABLEMERGECELLS 15
#define ASC_MENU_EVENT_TYPE_TABLESPLITCELLS 16
#define ASC_MENU_EVENT_TYPE_SECTION 17
#define ASC_MENU_EVENT_TYPE_SHAPE 18
// insert commands
#define ASC_MENU_EVENT_TYPE_INSERT_IMAGE 50