From 188a9f0afa2ac898b9bc90c0301c760a7224d100 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Mon, 1 May 2000 21:13:19 +0000 Subject: Constified XML utility functions. svn path=/trunk/; revision=2722 --- e-util/e-xml-utils.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'e-util/e-xml-utils.c') diff --git a/e-util/e-xml-utils.c b/e-util/e-xml-utils.c index 7e88dbaedd..33b9d28235 100644 --- a/e-util/e-xml-utils.c +++ b/e-util/e-xml-utils.c @@ -25,7 +25,7 @@ #include -xmlNode *e_xml_get_child_by_name(xmlNode *parent, xmlChar *child_name) +xmlNode *e_xml_get_child_by_name(xmlNode *parent, const xmlChar *child_name) { xmlNode *child; @@ -45,7 +45,7 @@ xmlNode *e_xml_get_child_by_name(xmlNode *parent, xmlChar *child_name) * child with the name child_name and no "lang" attribute. */ xmlNode * -e_xml_get_child_by_name_by_lang(xmlNode *parent, xmlChar *child_name, char *lang) +e_xml_get_child_by_name_by_lang(xmlNode *parent, const xmlChar *child_name, const char *lang) { xmlNode *child; /* This is the default version of the string. */ @@ -71,7 +71,7 @@ e_xml_get_child_by_name_by_lang(xmlNode *parent, xmlChar *child_name, char *lang } int -e_xml_get_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name) +e_xml_get_integer_prop_by_name(xmlNode *parent, const xmlChar *prop_name) { xmlChar *prop; @@ -86,7 +86,7 @@ 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) +e_xml_set_integer_prop_by_name(xmlNode *parent, const xmlChar *prop_name, int value) { xmlChar *valuestr; -- cgit v1.2.3