diff options
author | Luca Bruno <lucabru@src.gnome.org> | 2011-04-30 17:28:15 +0200 |
---|---|---|
committer | Luca Bruno <lucabru@src.gnome.org> | 2011-04-30 17:29:58 +0200 |
commit | 963a7bb09d4bd96d7a31052c49db6811026db441 (patch) | |
tree | bba78cde985b02854adc65860a72ddab5e8c4d8a /vapi/gdk-2.0.vapi | |
parent | c3719316c34ef3e1e926dc68cd2ac8cfb9667722 (diff) | |
download | vala-963a7bb09d4bd96d7a31052c49db6811026db441.tar.gz |
gdk-2.0, gdk-3.0: Fix Keymap.get_entries_for_keycode binding
Fixes bug 649013.
Diffstat (limited to 'vapi/gdk-2.0.vapi')
-rw-r--r-- | vapi/gdk-2.0.vapi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vapi/gdk-2.0.vapi b/vapi/gdk-2.0.vapi index e89808e8a..ac2ebe5de 100644 --- a/vapi/gdk-2.0.vapi +++ b/vapi/gdk-2.0.vapi @@ -408,7 +408,7 @@ namespace Gdk { public bool get_caps_lock_state (); public static unowned Gdk.Keymap get_default (); public Pango.Direction get_direction (); - public bool get_entries_for_keycode (uint hardware_keycode, out unowned Gdk.KeymapKey[] keys, out unowned uint[] keyvals, int n_entries); + public bool get_entries_for_keycode (uint hardware_keycode, [CCode (array_length = false)] out Gdk.KeymapKey[] keys, [CCode (array_length = false)] out uint[] keyvals, out int n_entries); public bool get_entries_for_keyval (uint keyval, out unowned Gdk.KeymapKey[] keys); public static unowned Gdk.Keymap get_for_display (Gdk.Display display); public bool have_bidi_layouts (); |