diff --git a/ChangeLog b/ChangeLog index 5d1d5e4590..6317e82211 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-07-03 Tor Lillqvist + + * gdk/win32/gdkkeys-win32.c (gdk_keymap_have_bidi_layouts): + Implement. Just return FALSE for now. What should this function + actually do? Does keyboards layouts being "in use" mean that such + layouts can be switched to on the fly? If so we need to actually + check that. + 2007-07-03 Tristan Van Berkom * gtk/gtkwidget.c: Fixed assertions from setting "tooltip-text" to NULL diff --git a/gdk/win32/gdkkeys-win32.c b/gdk/win32/gdkkeys-win32.c index 6bb11054fc..f2bdae970e 100644 --- a/gdk/win32/gdkkeys-win32.c +++ b/gdk/win32/gdkkeys-win32.c @@ -526,6 +526,16 @@ gdk_keymap_get_direction (GdkKeymap *keymap) } } +gboolean +gdk_keymap_have_bidi_layouts (GdkKeymap *keymap) +{ + /* Should we check if the kayboard layouts switchable at the moment + * cover both directionalities? What does the doc comment in + * ../x11/gdkkeys-x11.c exactly mean? + */ + return FALSE; +} + gboolean gdk_keymap_get_entries_for_keyval (GdkKeymap *keymap, guint keyval,