summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
77749ea)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62014
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
OutputString(stream, str.Mid(last, i - last), convMem, convFile);
wxString s(wxT("&#"));
OutputString(stream, str.Mid(last, i - last), convMem, convFile);
wxString s(wxT("&#"));
+#else
+ s << (int) wxUChar(c);
+#endif
s << wxT(";");
OutputString(stream, s, NULL, NULL);
last = i + 1;
s << wxT(";");
OutputString(stream, s, NULL, NULL);
last = i + 1;
str1 += str.Mid(last, i - last);
wxString s(wxT("&#"));
str1 += str.Mid(last, i - last);
wxString s(wxT("&#"));
+#else
+ s << (int) wxUChar(c);
+#endif
s << wxT(";");
str1 += s;
last = i + 1;
s << wxT(";");
str1 += s;
last = i + 1;
}
else for (i = 0; i < len; i++)
{
}
else for (i = 0; i < len; i++)
{
+#else
+ int c = (int) wxUChar(text[i]);
+#endif
if ((c < 32 || c == 34) && c != 9 && c != 10 && c != 13)
{
if (i > 0)
if ((c < 32 || c == 34) && c != 9 && c != 10 && c != 13)
{
if (i > 0)