From cfb64e0ced9d5a058d934e3c55aaab5a9242852d Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Sun, 5 Mar 2000 00:27:26 +0000 Subject: Added e_xml_set_integer_prop_by_name. 2000-03-04 Christopher James Lahey * e-util/e-xml-utils.c, e-util/e-xml-utils.h: Added e_xml_set_integer_prop_by_name. svn path=/trunk/; revision=2051 --- ChangeLog | 5 +++++ e-util/e-xml-utils.c | 8 ++++++++ e-util/e-xml-utils.c-56826 | 8 ++++++++ e-util/e-xml-utils.h | 1 + e-util/e-xml-utils.h-82548 | 1 + 5 files changed, 23 insertions(+) diff --git a/ChangeLog b/ChangeLog index 908814971d..d005b244ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-03-04 Christopher James Lahey + + * e-util/e-xml-utils.c, e-util/e-xml-utils.h: Added + e_xml_set_integer_prop_by_name. + 2000-03-04 bertrand * tests/ui-tests/Makefile.am: add bonobo to the build diff --git a/e-util/e-xml-utils.c b/e-util/e-xml-utils.c index e6f361392b..7eb54105d1 100644 --- a/e-util/e-xml-utils.c +++ b/e-util/e-xml-utils.c @@ -44,3 +44,11 @@ e_xml_get_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name) else return 0; } + +void +e_xml_set_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name, int value) +{ + xmlChar *value = g_strdup_printf("%d", value); + xmlSetProp(parent, prop_name, value); + g_free (value); +} diff --git a/e-util/e-xml-utils.c-56826 b/e-util/e-xml-utils.c-56826 index e6f361392b..7eb54105d1 100644 --- a/e-util/e-xml-utils.c-56826 +++ b/e-util/e-xml-utils.c-56826 @@ -44,3 +44,11 @@ e_xml_get_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name) else return 0; } + +void +e_xml_set_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name, int value) +{ + xmlChar *value = g_strdup_printf("%d", value); + xmlSetProp(parent, prop_name, value); + g_free (value); +} diff --git a/e-util/e-xml-utils.h b/e-util/e-xml-utils.h index c9b0ff2b39..7b39ddac5f 100644 --- a/e-util/e-xml-utils.h +++ b/e-util/e-xml-utils.h @@ -27,5 +27,6 @@ #include xmlNode *e_xml_get_child_by_name(xmlNode *parent, xmlChar *child_name); int e_xml_get_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name); +void e_xml_set_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name, int value); #endif /* __E_XML_UTILS__ */ diff --git a/e-util/e-xml-utils.h-82548 b/e-util/e-xml-utils.h-82548 index c9b0ff2b39..7b39ddac5f 100644 --- a/e-util/e-xml-utils.h-82548 +++ b/e-util/e-xml-utils.h-82548 @@ -27,5 +27,6 @@ #include xmlNode *e_xml_get_child_by_name(xmlNode *parent, xmlChar *child_name); int e_xml_get_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name); +void e_xml_set_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name, int value); #endif /* __E_XML_UTILS__ */ -- cgit v1.2.3