summaryrefslogtreecommitdiff
path: root/gdk/gdk.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2007-11-25 06:51:19 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2007-11-25 06:51:19 +0000
commit4896e24bb1121bf114f9daf25a105f8a815066ff (patch)
treef124808c75f514a4aeb5ba043f06e9e3892f1560 /gdk/gdk.c
parent1719428849826d9baf80dcce3eb0059997919b6b (diff)
downloadgtk+-4896e24bb1121bf114f9daf25a105f8a815066ff.tar.gz
Require gtk-doc 1.8
2007-11-25 Matthias Clasen <mclasen@redhat.com> * configure.in: Require gtk-doc 1.8 * */*.c: Use gtk-doc abbreviations for examples in docs. svn path=/trunk/; revision=19041
Diffstat (limited to 'gdk/gdk.c')
-rw-r--r--gdk/gdk.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gdk/gdk.c b/gdk/gdk.c
index cf14ac4658..a61543ae56 100644
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -504,18 +504,18 @@ gdk_threads_dispatch_free (gpointer data)
* running in thread A and accessing @self after it has been finalized
* in thread B:
*
- * <informalexample><programlisting>
+ * |[
* static gboolean
* idle_callback (gpointer data)
* {
- * // gdk_threads_enter(); would be needed for g_idle_add()
+ * /&ast; gdk_threads_enter(); would be needed for g_idle_add() &ast;/
*
* SomeWidget *self = data;
- * /<!-- -->* do stuff with self *<!-- -->/
+ * /&ast; do stuff with self &ast;/
*
* self->idle_id = 0;
*
- * // gdk_threads_leave(); would be needed for g_idle_add()
+ * /&ast; gdk_threads_leave(); would be needed for g_idle_add() &ast;/
* return FALSE;
* }
*
@@ -523,7 +523,7 @@ gdk_threads_dispatch_free (gpointer data)
* some_widget_do_stuff_later (SomeWidget *self)
* {
* self->idle_id = gdk_threads_add_idle (idle_callback, self)
- * // using g_idle_add() here would require thread protection in the callback
+ * /&ast; using g_idle_add() here would require thread protection in the callback &ast;/
* }
*
* static void
@@ -534,7 +534,7 @@ gdk_threads_dispatch_free (gpointer data)
* g_source_remove (self->idle_id);
* G_OBJECT_CLASS (parent_class)->finalize (object);
* }
- * </programlisting></informalexample>
+ * ]|
*
* Return value: the ID (greater than 0) of the event source.
*
@@ -610,12 +610,12 @@ gdk_threads_add_idle (GSourceFunc function,
* This variant of g_timeout_add_full() can be thought of a MT-safe version
* for GTK+ widgets for the following use case:
*
- * <informalexample><programlisting>
+ * |[
* static gboolean timeout_callback (gpointer data)
* {
* SomeWidget *self = data;
*
- * /<!-- -->* do stuff with self *<!-- -->/
+ * /&ast; do stuff with self &ast;/
*
* self->timeout_id = 0;
*
@@ -629,14 +629,14 @@ gdk_threads_add_idle (GSourceFunc function,
*
* static void some_widget_finalize (GObject *object)
* {
- * SomeWidget *self = SOME_WIDGET(object);
+ * SomeWidget *self = SOME_WIDGET (object);
*
* if (self->timeout_id)
* g_source_remove (self->timeout_id);
*
* G_OBJECT_CLASS (parent_class)->finalize (object);
* }
- * </programlisting></informalexample>
+ * ]|
*
* Return value: the ID (greater than 0) of the event source.
*