Implement. Just return FALSE for now. What should this function actually

2007-07-03  Tor Lillqvist  <tml@novell.com>

	* 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.


svn path=/trunk/; revision=18359
This commit is contained in:
Tor Lillqvist 2007-07-03 16:53:17 +00:00 committed by Tor Lillqvist
parent 44f7b0657b
commit 92421f96f6
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2007-07-03 Tor Lillqvist <tml@novell.com>
* 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 <tvb@gnome.org>
* gtk/gtkwidget.c: Fixed assertions from setting "tooltip-text" to NULL

View File

@ -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,