From c4f0bbb13087da69de371b23a3dcfa09003399e4 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 4 Jan 2011 23:15:35 -0500 Subject: [PATCH] fix documentation build --- gtk/gtkexpander.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gtk/gtkexpander.c b/gtk/gtkexpander.c index 7e173bcdca..70b701a07d 100644 --- a/gtk/gtkexpander.c +++ b/gtk/gtkexpander.c @@ -26,15 +26,17 @@ * @Short_description: A container which can hide its child * @Title: GtkExpander * + * * A #GtkExpander allows the user to hide or show its child by clicking * on an expander triangle similar to the triangles used in a #GtkTreeView. - * + * + * * Normally you use an expander as you would use any other descendant * of #GtkBin; you create the child widget and use gtk_container_add() * to add it to the expander. When the expander is toggled, it will take * care of showing and hiding the child automatically. - * - *
+ * + * * Special Usage * * There are situations in which you may prefer to show and hide the @@ -45,6 +47,7 @@ * its expansion state. You should watch this property with a signal * connection as follows: * + * * * expander = gtk_expander_new_with_mnemonic ("_More Options"); * g_signal_connect (expander, "notify::expanded", @@ -71,7 +74,8 @@ * } * } * - *
+ * + * * * GtkExpander as GtkBuildable *