diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2013-04-02 15:56:31 -0400 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2013-04-02 17:39:42 -0400 |
commit | 58209e1138a0dba479d9b3b04d103977b050e8a7 (patch) | |
tree | 095c8b6d47614338a39b27519d55243859f6632b /gtk/gtkmain.c | |
parent | 68b437eea21154b1c33882f9cb1f630a6ea03c77 (diff) | |
download | gtk+-58209e1138a0dba479d9b3b04d103977b050e8a7.tar.gz |
window: rename functions dealing with mnemonic delayed display
Don't mention "auto mnemonics", since those methods are purely about
scheduling a delayed display, and that makes understanding the code a
bit harder.
https://bugzilla.gnome.org/show_bug.cgi?id=697144
Diffstat (limited to 'gtk/gtkmain.c')
-rw-r--r-- | gtk/gtkmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c index fbf829387a..18f2171898 100644 --- a/gtk/gtkmain.c +++ b/gtk/gtkmain.c @@ -1698,7 +1698,7 @@ gtk_main_do_event (GdkEvent *event) if (GTK_IS_WINDOW (window)) { if (mnemonics_visible) - _gtk_window_set_auto_mnemonics_visible (GTK_WINDOW (window)); + _gtk_window_schedule_mnemonics_visible (GTK_WINDOW (window)); else gtk_window_set_mnemonics_visible (GTK_WINDOW (window), FALSE); } |