Commit 97492e8d authored by twanvl's avatar twanvl

Fix error in vc9: universal-character-name encountered in source

Changed unicode literals from '\u1234' to '\x1234'. Hopefully this doesn't break the build for other compilers.
parent 7d6080a4
...@@ -62,15 +62,15 @@ void writeUTF8(wxTextOutputStream& stream, const String& str); ...@@ -62,15 +62,15 @@ void writeUTF8(wxTextOutputStream& stream, const String& str);
/// Some constants we like to use /// Some constants we like to use
#ifdef UNICODE #ifdef UNICODE
#define LEFT_ANGLE_BRACKET _("\u2039") #define LEFT_ANGLE_BRACKET _("\x2039")
#define RIGHT_ANGLE_BRACKET _("\u203A") #define RIGHT_ANGLE_BRACKET _("\x203A")
#define LEFT_SINGLE_QUOTE _('\u2018') #define LEFT_SINGLE_QUOTE _('\x2018')
#define RIGHT_SINGLE_QUOTE _('\u2019') #define RIGHT_SINGLE_QUOTE _('\x2019')
#define LEFT_DOUBLE_QUOTE _('\u201C') #define LEFT_DOUBLE_QUOTE _('\x201C')
#define RIGHT_DOUBLE_QUOTE _('\u201D') #define RIGHT_DOUBLE_QUOTE _('\x201D')
#define EN_DASH _('\u2013') #define EN_DASH _('\x2013')
#define EM_DASH _('\u2014') #define EM_DASH _('\x2014')
#define CONNECTION_SPACE _('\uEB00') // in private use area, untags to ' ' #define CONNECTION_SPACE _('\xEB00') // in private use area, untags to ' '
#else #else
#define LEFT_ANGLE_BRACKET _("<") #define LEFT_ANGLE_BRACKET _("<")
#define RIGHT_ANGLE_BRACKET _(">") #define RIGHT_ANGLE_BRACKET _(">")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment