diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-11-25 06:51:19 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-11-25 06:51:19 +0000 |
commit | 4896e24bb1121bf114f9daf25a105f8a815066ff (patch) | |
tree | f124808c75f514a4aeb5ba043f06e9e3892f1560 /gdk/gdkevents.c | |
parent | 1719428849826d9baf80dcce3eb0059997919b6b (diff) | |
download | gtk+-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.c | 11 |
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 + * |[ + * { + * /* motion_event handler */ * x = motion_event->x; * y = motion_event->y; - * ; // handle (x,y) motion - * gdk_event_request_motions (motion_event); // handles is_hint events + * /* handle (x,y) motion */ + * gdk_event_request_motions (motion_event); /* handles is_hint events */ * } - * </programlisting></informalexample> + * ]| * * Since: 2.12 **/ |