]> git.sur5r.net Git - glabels/commitdiff
Cleanup of code formatting.
authorJim Evins <evins@snaught.com>
Sun, 26 Jan 2003 18:24:47 +0000 (18:24 +0000)
committerJim Evins <evins@snaught.com>
Sun, 26 Jan 2003 18:24:47 +0000 (18:24 +0000)
git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@248 f5e0f49d-192f-0410-a22d-a8d8700d0965

glabels2/src/xml.c

index 3dd99748345ef7fb2250ae3af417eba6b0c4e25d..d90091b823b750a144df4e51400835dd1756e91d 100644 (file)
@@ -130,9 +130,10 @@ gl_xml_get_prop_uint_hex (xmlNodePtr   node,
 /****************************************************************************/
 /* Set property from double.                                                */
 /****************************************************************************/
-void     gl_xml_set_prop_double   (xmlNodePtr    node,
-                                  const gchar  *property,
-                                  gdouble       val)
+void
+gl_xml_set_prop_double (xmlNodePtr    node,
+                       const gchar  *property,
+                       gdouble       val)
 {
        gchar  *string;
 
@@ -144,9 +145,10 @@ void     gl_xml_set_prop_double   (xmlNodePtr    node,
 /****************************************************************************/
 /* Set property from boolean.                                               */
 /****************************************************************************/
-void     gl_xml_set_prop_boolean  (xmlNodePtr    node,
-                                  const gchar  *property,
-                                  gboolean      val)
+void
+gl_xml_set_prop_boolean (xmlNodePtr    node,
+                        const gchar  *property,
+                        gboolean      val)
 {
        xmlSetProp (node, property, (val ? "True" : "False"));
 }
@@ -154,9 +156,10 @@ void     gl_xml_set_prop_boolean  (xmlNodePtr    node,
 /****************************************************************************/
 /* Set property from int.                                                   */
 /****************************************************************************/
-void     gl_xml_set_prop_int      (xmlNodePtr    node,
-                                  const gchar  *property,
-                                  gint          val)
+void
+gl_xml_set_prop_int (xmlNodePtr    node,
+                    const gchar  *property,
+                    gint          val)
 {
        gchar  *string;
 
@@ -168,9 +171,10 @@ void     gl_xml_set_prop_int      (xmlNodePtr    node,
 /****************************************************************************/
 /* Set property from uint in hex.                                           */
 /****************************************************************************/
-void     gl_xml_set_prop_uint_hex (xmlNodePtr    node,
-                                  const gchar  *property,
-                                  guint         val)
+void
+gl_xml_set_prop_uint_hex (xmlNodePtr    node,
+                         const gchar  *property,
+                         guint         val)
 {
        gchar  *string;