[gtk+] Replace GDK_Tab and GDK_ISO_Left_Tab with GDK_KEY equivalents
- From: Javier Jardón <jjardon src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Replace GDK_Tab and GDK_ISO_Left_Tab with GDK_KEY equivalents
- Date: Tue, 5 Oct 2010 23:21:22 +0000 (UTC)
commit c3851df92d9c4bff0bb99855faa8c8110d248318
Author: John Ralls <jralls ceridwen fremont ca us>
Date: Wed Oct 6 01:18:25 2010 +0200
Replace GDK_Tab and GDK_ISO_Left_Tab with GDK_KEY equivalents
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=631475
Signed-off-by: Javier Jardón <jjardon gnome org>
gdk/quartz/gdkkeys-quartz.c | 8 ++++----
gdk/x11/gdkkeys-x11.c | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/gdk/quartz/gdkkeys-quartz.c b/gdk/quartz/gdkkeys-quartz.c
index 8d0200c..a077bfa 100644
--- a/gdk/quartz/gdkkeys-quartz.c
+++ b/gdk/quartz/gdkkeys-quartz.c
@@ -277,10 +277,10 @@ maybe_update_keymap (void)
}
/* Special-case shift-tab since GTK+ expects
- * GDK_ISO_Left_Tab for that.
+ * GDK_KEY_ISO_Left_Tab for that.
*/
- if (found && p[j] == GDK_Tab && modifiers[j] == shiftKey)
- p[j] = GDK_ISO_Left_Tab;
+ if (found && p[j] == GDK_KEY_Tab && modifiers[j] == shiftKey)
+ p[j] = GDK_KEY_ISO_Left_Tab;
if (!found)
{
@@ -359,7 +359,7 @@ maybe_update_keymap (void)
}
/* Special-case shift-tab since GTK+ expects
- * GDK_ISO_Left_Tab for that.
+ * GDK_KEY_ISO_Left_Tab for that.
*/
if (found && p[j] == GDK_KEY_Tab && modifiers[j] == shiftKey)
p[j] = GDK_KEY_ISO_Left_Tab;
diff --git a/gdk/x11/gdkkeys-x11.c b/gdk/x11/gdkkeys-x11.c
index e0a7414..831c69f 100644
--- a/gdk/x11/gdkkeys-x11.c
+++ b/gdk/x11/gdkkeys-x11.c
@@ -384,9 +384,9 @@ update_keymaps (GdkKeymapX11 *keymap_x11)
&keymap_x11->keysyms_per_keycode);
- /* GDK_ISO_Left_Tab, as usually configured through XKB, really messes
+ /* GDK_KEY_ISO_Left_Tab, as usually configured through XKB, really messes
* up the whole idea of "consumed modifiers" because shift is consumed.
- * However, <shift>Tab is not usually GDK_ISO_Left_Tab without XKB,
+ * However, <shift>Tab is not usually GDK_KEY_ISO_Left_Tab without XKB,
* we we fudge the map here.
*/
keycode = keymap_x11->min_keycode;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]