From 5a0b40ff9ed9a05f38c229774abb29cf21dbc975 Mon Sep 17 00:00:00 2001 From: JucaBlues Date: Wed, 27 Feb 2008 06:37:53 +0000 Subject: [PATCH] tiny refactoring --- src/helper-fns.h | 2 +- src/sp-font.cpp | 15 +-------------- 2 files changed, 2 insertions(+), 15 deletions(-) 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); -- 2.39.5