summaryrefslogtreecommitdiff
path: root/gdk/gdkevents.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/gdkevents.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/gdkevents.c')
-rw-r--r--gdk/gdkevents.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/gdk/gdkevents.c b/gdk/gdkevents.c
index 1c58aadc89..f81d5eb363 100644
--- a/gdk/gdkevents.c
+++ b/gdk/gdkevents.c
@@ -843,14 +843,15 @@ gdk_event_get_axis (GdkEvent *event,
* core pointer. Coordinate extraction, processing and requesting more
* motion events from a %GDK_MOTION_NOTIFY event usually works like this:
*
- * <informalexample><programlisting>
- * { // motion_event handler
+ * |[
+ * {
+ * /&ast; motion_event handler &ast;/
* x = motion_event->x;
* y = motion_event->y;
- * ; // handle (x,y) motion
- * gdk_event_request_motions (motion_event); // handles is_hint events
+ * /&ast; handle (x,y) motion &ast;/
+ * gdk_event_request_motions (motion_event); /&ast; handles is_hint events &ast;/
* }
- * </programlisting></informalexample>
+ * ]|
*
* Since: 2.12
**/