diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2010-09-18 01:03:57 +0100 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2010-09-18 01:03:57 +0100 |
commit | ba8130de31b28d079203c2e883663d45b7c66668 (patch) | |
tree | bd7c6bd029d0a9ae15e2e21acccd3806f20d9f94 /src/plugins/gromit | |
parent | b0a0821eae5fecbaead5cb00a6e25836b8e65639 (diff) | |
download | totem-ba8130de31b28d079203c2e883663d45b7c66668.tar.gz |
Use GDK_KEY_* enums rather than the deprecated GDK_* ones
Diffstat (limited to 'src/plugins/gromit')
-rw-r--r-- | src/plugins/gromit/totem-gromit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/gromit/totem-gromit.c b/src/plugins/gromit/totem-gromit.c index d1233e2e2..9f5314ada 100644 --- a/src/plugins/gromit/totem-gromit.c +++ b/src/plugins/gromit/totem-gromit.c @@ -200,12 +200,12 @@ on_window_key_press_event (GtkWidget *window, GdkEventKey *event, TotemGromitPlu return FALSE; switch (event->keyval) { - case GDK_D: - case GDK_d: + case GDK_KEY_D: + case GDK_KEY_d: totem_gromit_toggle (plugin); break; - case GDK_E: - case GDK_e: + case GDK_KEY_E: + case GDK_KEY_e: totem_gromit_clear (plugin, FALSE); break; default: |