From 4d5ebbc363352f20b4ffa21311f0db0df5d8023c Mon Sep 17 00:00:00 2001
From: Christopher James Lahey <clahey@helixcode.com>
Date: Wed, 11 Oct 2000 07:54:51 +0000
Subject: Included a missing #include.

2000-10-11  Christopher James Lahey  <clahey@helixcode.com>

	* gal/util/e-util.c: Included a missing #include.

	* gal/util/e-xml-utils.c, gal/util/e-xml-utils.h: Added
	e_xml_get_bool_prop_by_name, e_xml_set_bool_prop_by_name, and
	e_xml_get_translated_string_prop_by_name.  Reindented prototypes.

svn path=/trunk/; revision=5835
---
 e-util/e-xml-utils.h | 37 +++++++++++++++++++++++++++++--------
 1 file changed, 29 insertions(+), 8 deletions(-)

(limited to 'e-util/e-xml-utils.h')

diff --git a/e-util/e-xml-utils.h b/e-util/e-xml-utils.h
index a574cec3f1..6d857e4e1d 100644
--- a/e-util/e-xml-utils.h
+++ b/e-util/e-xml-utils.h
@@ -26,17 +26,38 @@
 #include <gnome.h>
 #include <gnome-xml/tree.h>
 
-xmlNode *e_xml_get_child_by_name(xmlNode *parent, const xmlChar *child_name);
+xmlNode  *e_xml_get_child_by_name                   (const xmlNode *parent,
+						     const xmlChar *child_name);
 /* lang set to NULL means use the current locale. */
-xmlNode *e_xml_get_child_by_name_by_lang(xmlNode *parent, const xmlChar *child_name, const char *lang);
+xmlNode  *e_xml_get_child_by_name_by_lang           (const xmlNode *parent,
+						     const xmlChar *child_name,
+						     const char    *lang);
 
-int e_xml_get_integer_prop_by_name(xmlNode *parent, const xmlChar *prop_name);
-void e_xml_set_integer_prop_by_name(xmlNode *parent, const xmlChar *prop_name, int value);
+int       e_xml_get_integer_prop_by_name            (const xmlNode *parent,
+						     const xmlChar *prop_name);
+void      e_xml_set_integer_prop_by_name            (xmlNode       *parent,
+						     const xmlChar *prop_name,
+						     int            value);
 
-double e_xml_get_double_prop_by_name(xmlNode *parent, const xmlChar *prop_name);
-void e_xml_set_double_prop_by_name(xmlNode *parent, const xmlChar *prop_name, double value);
+gboolean  e_xml_get_bool_prop_by_name               (const xmlNode *parent,
+						     const xmlChar *prop_name);
+void      e_xml_set_bool_prop_by_name               (xmlNode       *parent,
+						     const xmlChar *prop_name,
+						     gboolean       value);
 
-char *e_xml_get_string_prop_by_name(xmlNode *parent, const xmlChar *prop_name);
-void e_xml_set_string_prop_by_name(xmlNode *parent, const xmlChar *prop_name, char *value);
+double    e_xml_get_double_prop_by_name             (const xmlNode *parent,
+						     const xmlChar *prop_name);
+void      e_xml_set_double_prop_by_name             (xmlNode       *parent,
+						     const xmlChar *prop_name,
+						     double         value);
+
+char     *e_xml_get_string_prop_by_name             (const xmlNode *parent,
+						     const xmlChar *prop_name);
+void      e_xml_set_string_prop_by_name             (xmlNode       *parent,
+						     const xmlChar *prop_name,
+						     char          *value);
+
+char     *e_xml_get_translated_string_prop_by_name  (const xmlNode *parent,
+						     const xmlChar *prop_name);
 
 #endif /* __E_XML_UTILS__ */
-- 
cgit