Fixed 557420#23 – Updated the dead key lower bound back to dead_grave.

svn path=/branches/gtk-2-14/; revision=21844
This commit is contained in:
Simos Xenitellis
2008-12-04 00:49:17 +00:00
parent fa596e5552
commit b16bdfa56b
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
2008-12-04 Simos Xenitellis <simos@gnome.org>
Bug 557420#c23:
* gtk/gtkimcontextsimple.c: Fixed the lower bound for dead keys
to dead_grave (instead of dead_stroke).
2008-12-01 Matthias Clasen <mclasen@redhat.com>
Merged from trunk:

View File

@@ -415,7 +415,7 @@ check_normalize_nfc (gunichar* combination_buffer, gint n_compose)
* In future versions it will be just the keysym (no +1).
*/
#define IS_DEAD_KEY(k) \
((k) >= GDK_dead_stroke && (k) <= (GDK_dead_dasia+1))
((k) >= GDK_dead_grave && (k) <= (GDK_dead_dasia+1))
static gboolean
check_algorithmically (GtkIMContextSimple *context_simple,