summaryrefslogtreecommitdiff
path: root/gtk/gtkaccelgroup.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-01-06 09:06:24 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-01-06 09:44:08 -0500
commit6cdb6255afa06699a01463d389c0217f41ac6fca (patch)
treeb5ce9f9c011ea7670eec21c20ae33c79c26e1a6e /gtk/gtkaccelgroup.c
parentf35c3fd5f7477032af9ca7fbcc29f837b97aa36a (diff)
downloadgtk+-6cdb6255afa06699a01463d389c0217f41ac6fca.tar.gz
More documentation fixes2.99.0
Diffstat (limited to 'gtk/gtkaccelgroup.c')
-rw-r--r--gtk/gtkaccelgroup.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkaccelgroup.c b/gtk/gtkaccelgroup.c
index aed1dd3a30..9e43ccaf7c 100644
--- a/gtk/gtkaccelgroup.c
+++ b/gtk/gtkaccelgroup.c
@@ -950,11 +950,11 @@ gtk_accel_groups_activate (GObject *object,
* @keyval: a GDK keyval
* @modifiers: modifier mask
* @returns: %TRUE if the accelerator is valid
- *
+ *
* Determines whether a given keyval and modifier mask constitute
- * a valid keyboard accelerator. For example, the #GDK_a keyval
+ * a valid keyboard accelerator. For example, the #GDK_KEY_a keyval
* plus #GDK_CONTROL_MASK is valid - this is a "Ctrl+a" accelerator.
- * But, you can't, for instance, use the #GDK_Control_L keyval
+ * But, you can't, for instance, use the #GDK_KEY_Control_L keyval
* as an accelerator.
*/
gboolean
@@ -1278,11 +1278,11 @@ gtk_accelerator_parse (const gchar *accelerator,
* gtk_accelerator_name:
* @accelerator_key: accelerator keyval
* @accelerator_mods: accelerator modifier mask
- *
+ *
* Converts an accelerator keyval and modifier mask
* into a string parseable by gtk_accelerator_parse().
- * For example, if you pass in #GDK_q and #GDK_CONTROL_MASK,
- * this function returns "&lt;Control&gt;q".
+ * For example, if you pass in #GDK_KEY_q and #GDK_CONTROL_MASK,
+ * this function returns "&lt;Control&gt;q".
*
* If you need to display accelerators in the user interface,
* see gtk_accelerator_get_label().