summaryrefslogtreecommitdiff
path: root/gladeui/glade-xml-utils.c
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@src.gnome.org>2008-04-07 12:23:11 +0000
committerTristan Van Berkom <tvb@src.gnome.org>2008-04-07 12:23:11 +0000
commitc43aaea090997a285ece539bf9b9f4bfbe057382 (patch)
tree826099d08f6f90b1c3bf51c22b0d7ddc6d193b4a /gladeui/glade-xml-utils.c
parentc79fc7cbe1f06d4a6164075b8d39ddff18df247a (diff)
downloadglade-c43aaea090997a285ece539bf9b9f4bfbe057382.tar.gz
Run gtkdocize with --flavour=no-tmpl
* autogen.sh: Run gtkdocize with --flavour=no-tmpl * configure.ac: Require gtk-doc 1.9 and bump to 3.5.0 dev version. * doc/gladeui-overrides.txt, doc/children.sgml, doc/tmpl/*: Removed unneeded. * doc/gladeui-docs.sgml, doc/widgetclasses.sgml, doc/catalogintro.sgml, doc/Makefile.am: Mega docs update, added new files and completely rediscribed the catalog in its new form. * gladeui/glade-design-view.c, gladeui/glade-widget.c, gladeui/glade-widget-adaptor.c, gladeui/glade-command.c, gladeui/glade-widget-adaptor.h, gladeui/glade-base-editor.c, gladeui/glade-widget-action.c, gladeui/glade-xml-utils.c, gladeui/glade-utils.c, gladeui/glade-catalog.c, gladeui/glade-property.c, gladeui/glade-project.c: Added some description statements to newly documented files, fixed some warnings in other sources. M ChangeLog M configure.ac M doc/gladeui-docs.sgml M doc/widgetclasses.sgml M doc/catalogintro.sgml D doc/gladeui-overrides.txt M doc/Makefile.am D doc/children.sgml D doc/tmpl M doc/gladeui-sections.txt M doc/gladeui.types M doc/properties.sgml M gladeui/glade-design-view.c M gladeui/glade-widget.c M gladeui/glade-widget-adaptor.c M gladeui/glade-command.c M gladeui/glade-widget-adaptor.h M gladeui/glade-base-editor.c M gladeui/glade-widget-action.c M gladeui/glade-xml-utils.c M gladeui/glade-utils.c M gladeui/glade-catalog.c M gladeui/glade-property.c M gladeui/glade-project.c M autogen.sh svn path=/trunk/; revision=1775
Diffstat (limited to 'gladeui/glade-xml-utils.c')
-rw-r--r--gladeui/glade-xml-utils.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/gladeui/glade-xml-utils.c b/gladeui/glade-xml-utils.c
index ff72a46f..7524ff10 100644
--- a/gladeui/glade-xml-utils.c
+++ b/gladeui/glade-xml-utils.c
@@ -8,6 +8,17 @@
* Chema Celorio <chema@gnome.org>
*/
+/**
+ * SECTION:glade-xml-utils
+ * @Title: Xml Utils
+ * @Short_Description: An api to read and write xml.
+ *
+ * You may need these tools if you are implementing #GladeReadWidgetFunc
+ * and/or #GladeWriteWidgetFunc on your #GladeWidgetAdaptor to read
+ * and write widgets in custom ways
+ */
+
+
#include "config.h"
#include <string.h>
@@ -86,9 +97,9 @@ glade_xml_set_value (GladeXmlNode *node_in, const gchar *name, const gchar *val)
* glade_xml_get_content:
* @node_in: a #GladeXmlNode
*
- * Returns a string containing the content of @node_in.
- * Note: It is the caller's responsibility to free the memory used by this
- * string.
+ * Gets a string containing the content of @node_in.
+ *
+ * Returns: A newly allocated string
*/
gchar *
glade_xml_get_content (GladeXmlNode *node_in)