summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2007-02-18 15:07:56 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2007-02-18 15:07:56 +0000
commit9a51aa71daabb73f554bf17c9e1d8c18e6135933 (patch)
treed8f3398051f1e9ebcfc9f5cf8b1ab4ab1fa5045e
parentrelocated unix print dialog outside of extension call path (diff)
downloadinkscape-9a51aa71daabb73f554bf17c9e1d8c18e6135933.tar.gz
inkscape-9a51aa71daabb73f554bf17c9e1d8c18e6135933.zip
added forward decl to fixed_g_ascii_strtod to fix compiler issue on WinXP
(bzr r2391)
-rw-r--r--src/number-opt-number.h9
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 {