diff options
| author | Kees Cook <kees@outflux.net> | 2007-02-20 20:34:35 +0000 |
|---|---|---|
| committer | keescook <keescook@users.sourceforge.net> | 2007-02-20 20:34:35 +0000 |
| commit | 4795e349ed6c0a40d2d4206f44c8ba045aa19449 (patch) | |
| tree | 4dea70f3648b619d5edcffe01811ebab6fde8b88 | |
| parent | 1664055 (diff) | |
| download | inkscape-4795e349ed6c0a40d2d4206f44c8ba045aa19449.tar.gz inkscape-4795e349ed6c0a40d2d4206f44c8ba045aa19449.zip | |
fully drop fixed_g_ascii_strtod hack
(bzr r2406)
| -rw-r--r-- | build.xml | 2 | ||||
| -rw-r--r-- | config.h.mingw | 3 | ||||
| -rw-r--r-- | src/fixes.cpp | 3 |
3 files changed, 2 insertions, 6 deletions
@@ -126,8 +126,6 @@ #define HAVE_GTK_WINDOW_FULLSCREEN 1 - #define g_ascii_strtod fixed_g_ascii_strtod - #endif /* _CONFIG_H_ */ </makefile> </target> diff --git a/config.h.mingw b/config.h.mingw index 7580570d5..8e169af3d 100644 --- a/config.h.mingw +++ b/config.h.mingw @@ -50,7 +50,4 @@ #define HAVE_GTK_WINDOW_FULLSCREEN 1 -#define g_ascii_strtod fixed_g_ascii_strtod - - #endif /* _CONFIG_H_ */ diff --git a/src/fixes.cpp b/src/fixes.cpp index 4ed1b6eb1..4aed2c313 100644 --- a/src/fixes.cpp +++ b/src/fixes.cpp @@ -27,7 +27,8 @@ # include "config.h" #endif -#if defined(g_ascii_strtod) +//#if defined(g_ascii_strtod) +#if 0 /* * until 2004-04-22, g_ascii_strtod could not handle having a locale-based * decimal separator immediately following the number ("5,4" would |
