diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2007-02-18 15:07:56 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2007-02-18 15:07:56 +0000 |
| commit | 9a51aa71daabb73f554bf17c9e1d8c18e6135933 (patch) | |
| tree | d8f3398051f1e9ebcfc9f5cf8b1ab4ab1fa5045e /src | |
| parent | relocated unix print dialog outside of extension call path (diff) | |
| download | inkscape-9a51aa71daabb73f554bf17c9e1d8c18e6135933.tar.gz inkscape-9a51aa71daabb73f554bf17c9e1d8c18e6135933.zip | |
added forward decl to fixed_g_ascii_strtod to fix compiler issue on WinXP
(bzr r2391)
Diffstat (limited to 'src')
| -rw-r--r-- | src/number-opt-number.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/number-opt-number.h b/src/number-opt-number.h index 51966a101..ef1675079 100644 --- a/src/number-opt-number.h +++ b/src/number-opt-number.h @@ -13,15 +13,18 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <glib.h> #include <glib/gprintf.h> //todo: use glib instead of stdlib #include <stdlib.h> #include "svg/stringstream.h" -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif + +gdouble fixed_g_ascii_strtod (const gchar *nptr, gchar **endptr); class NumberOptNumber { |
