diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-05-05 07:20:31 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-05-05 07:25:27 -0400 |
commit | 3e80ce39e1ca52bd59c3ed4a08d589519173af70 (patch) | |
tree | 2da22ab992381220f266c8e96711866d901eb91a /gtk/gtkapplication.c | |
parent | 349ed52b7b4f3beff663a24398c72d56b3e3dd95 (diff) | |
download | gtk+-3e80ce39e1ca52bd59c3ed4a08d589519173af70.tar.gz |
GtkApplication: Clarify docs a bit
Explicitly mention how gtk_application_set_accels_for_action can
be used to remove all accelerators for an action.
https://bugzilla.gnome.org/show_bug.cgi?id=729451
Diffstat (limited to 'gtk/gtkapplication.c')
-rw-r--r-- | gtk/gtkapplication.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk/gtkapplication.c b/gtk/gtkapplication.c index a074e9ebfb..7333c1d878 100644 --- a/gtk/gtkapplication.c +++ b/gtk/gtkapplication.c @@ -1483,10 +1483,13 @@ normalise_detailed_name (const gchar *detailed_action_name) * @accels: (array zero-terminated=1): a list of accelerators in the format understood by * gtk_accelerator_parse() * - * Sets one or more keyboard accelerator that will trigger the + * Sets zero or more keyboard accelerators that will trigger the * given action. The first item in @accels will be the primary * accelerator, which may be displayed in the UI. * + * To remove all accelerators for an action, use an empty, zero-terminated + * array for @accels. + * * Since: 3.12 */ void |