summaryrefslogtreecommitdiff
path: root/gdk/gdkevents.h
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-27 17:04:46 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-27 19:59:55 -0500
commit22586ea7c2c87a44ac1cc87f876e9f3ba2e73625 (patch)
tree72f3256948c09d527f3cd7ec409017c92515dde7 /gdk/gdkevents.h
parent8418e6422f0ec67c51d472321f4704a3a16e0368 (diff)
downloadgtk+-22586ea7c2c87a44ac1cc87f876e9f3ba2e73625.tar.gz
docs: use #*-struct instead of <structname>
Diffstat (limited to 'gdk/gdkevents.h')
-rw-r--r--gdk/gdkevents.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdk/gdkevents.h b/gdk/gdkevents.h
index 90c5bb030b..f808f4d3b2 100644
--- a/gdk/gdkevents.h
+++ b/gdk/gdkevents.h
@@ -43,7 +43,7 @@ G_BEGIN_DECLS
* @Short_description: Data structures specific to each type of event
* @Title: Event Structures
*
- * The event structs contain data specific to each type of event in GDK.
+ * The event structures contain data specific to each type of event in GDK.
*
* <note>
* <para>
@@ -1154,10 +1154,10 @@ struct _GdkEventDND {
* @setting: a #GdkEventSetting
* @grab_broken: a #GdkEventGrabBroken
*
- * The #GdkEvent struct contains a union of all of the event structs,
+ * A #GdkEvent contains a union of all of the event types,
* and allows access to the data fields in a number of ways.
*
- * The event type is always the first field in all of the event structs, and
+ * The event type is always the first field in all of the event types, and
* can always be accessed with the following code, no matter what type of
* event it is:
* <informalexample>
@@ -1169,8 +1169,8 @@ struct _GdkEventDND {
* </programlisting>
* </informalexample>
*
- * To access other fields of the event structs, the pointer to the event
- * can be cast to the appropriate event struct pointer, or the union member
+ * To access other fields of the event, the pointer to the event
+ * can be cast to the appropriate event type, or the union member
* name can be used. For example if the event type is %GDK_BUTTON_PRESS
* then the x coordinate of the button press can be accessed with:
* <informalexample>