projects
/
platform
/
upstream
/
at-spi2-atk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3854f4
)
2009-08-06 Mark Doffman <mark.doffman@codethink.co.uk>
author
Mark Doffman
<mdoff@altair-voyager.(none)>
Thu, 6 Aug 2009 18:49:43 +0000
(19:49 +0100)
committer
Mark Doffman
<mdoff@altair-voyager.(none)>
Thu, 6 Aug 2009 18:49:43 +0000
(19:49 +0100)
Fix signature of keyboard event registration
when key array is empty.
pyatspi/deviceevent.py
patch
|
blob
|
history
diff --git
a/pyatspi/deviceevent.py
b/pyatspi/deviceevent.py
index e61d70b7926e2001c348301a3a65534ee5172b61..5e4e3bbae95146177b8bae0e65372a117692cfff 100644
(file)
--- a/
pyatspi/deviceevent.py
+++ b/
pyatspi/deviceevent.py
@@
-282,7
+282,7
@@
class DeviceEventController(object):
"""
func = self._dec.get_dbus_method("registerKeystrokeListener")
return func(event_listener,
-
keys
,
+
_dbus.Array(keys, signature="(iisi)")
,
event_mask,
key_event_types,
event_listener_mode)