From 31fd64af0a3f3bdbbc6a1d0b6a00ddcf0a36081c Mon Sep 17 00:00:00 2001 From: whitequark Date: Mon, 28 Dec 2015 11:33:04 +0800 Subject: [PATCH] Remove platform checks for UTF-8 characters in the source. --- src/graphicswin.cpp | 4 ---- src/solvespace.cpp | 7 +------ 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/graphicswin.cpp b/src/graphicswin.cpp index bcab3cd..5bce93f 100644 --- a/src/graphicswin.cpp +++ b/src/graphicswin.cpp @@ -50,11 +50,7 @@ const GraphicsWindow::MenuEntry GraphicsWindow::menu[] = { { 1, "Re&generate All", MNU_REGEN_ALL, ' ', IN, mEdit }, { 1, NULL, 0, 0, IN, NULL }, { 1, "Snap Selection to &Grid", MNU_SNAP_TO_GRID, '.', IN, mEdit }, -#ifdef WIN32 -{ 1, "Rotate Imported &90\260", MNU_ROTATE_90, '9', IN, mEdit }, -#else { 1, "Rotate Imported &90°", MNU_ROTATE_90, '9', IN, mEdit }, -#endif { 1, NULL, 0, 0, IN, NULL }, { 1, "Cu&t", MNU_CUT, C|'X', IN, mClip }, { 1, "&Copy", MNU_COPY, C|'C', IN, mClip }, diff --git a/src/solvespace.cpp b/src/solvespace.cpp index 5fcf504..90f889a 100644 --- a/src/solvespace.cpp +++ b/src/solvespace.cpp @@ -774,12 +774,7 @@ void SolveSpaceUI::MenuHelp(int id) { "There is NO WARRANTY, to the extent permitted by\n" "law. For details, visit http://gnu.org/licenses/\n" "\n" -#ifdef WIN32 -"\xa9 " -#else -"© " -#endif - "2008-2013 Jonathan Westhues and other authors.\n" +"© 2008-2013 Jonathan Westhues and other authors.\n" ); break;