From: JucaBlues Date: Wed, 27 Feb 2008 06:37:53 +0000 (+0000) Subject: tiny refactoring X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5a0b40ff9ed9a05f38c229774abb29cf21dbc975;p=inkscape.git tiny refactoring --- diff --git a/src/helper-fns.h b/src/helper-fns.h index 635aefd79..39d919aa7 100644 --- a/src/helper-fns.h +++ b/src/helper-fns.h @@ -14,7 +14,7 @@ */ #include - +#include #include // calling helperfns_read_number(string, false), it's not obvious, what diff --git a/src/sp-font.cpp b/src/sp-font.cpp index 549bb22fd..07754357c 100644 --- a/src/sp-font.cpp +++ b/src/sp-font.cpp @@ -15,6 +15,7 @@ #include "attributes.h" #include "sp-font.h" #include "document.h" +#include "helper-fns.h" static void sp_font_class_init(SPFontClass *fc); static void sp_font_init(SPFont *font); @@ -97,20 +98,6 @@ static void sp_font_release(SPObject *object) } } -//ToDo: use helper-fns.h -inline double helperfns_read_number(gchar const *value) { - if (!value) return 0; - char *end; - double ret = g_ascii_strtod(value, &end); - if (*end) { - g_warning("Unable to convert \"%s\" to number", value); - // We could leave this out, too. If strtod can't convert - // anything, it will return zero. - ret = 0; - } - return ret; -} - static void sp_font_set(SPObject *object, unsigned int key, const gchar *value) { SPFont *font = SP_FONT(object);