diff options
author | Kevin B Kenny <kennykb@acm.org> | 2011-10-01 19:14:15 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2011-10-01 19:14:15 (GMT) |
commit | 92fd6c36bca199a694c294f966fb4a3d02728e90 (patch) | |
tree | da837ed3eaf5a45941ed02740d2d1f71f990e73f /generic/tkInt.h | |
parent | 3ee702d38e706fd685edf15cf34bbf146d370e90 (diff) | |
download | tk-92fd6c36bca199a694c294f966fb4a3d02728e90.zip tk-92fd6c36bca199a694c294f966fb4a3d02728e90.tar.gz tk-92fd6c36bca199a694c294f966fb4a3d02728e90.tar.bz2 |
Tentative fix for bug 3410609 - use the keysym returned by XLookupString in preference to the raw one in the XEvent.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index aa27243..bd40a88 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -864,6 +864,8 @@ typedef struct { * allocated with ckalloc(). */ int charValueLen; /* Length of string in charValuePtr when that * is non-NULL. */ + KeySym keysym; /* Key symbol computed after input methods + * have been invoked */ } TkKeyEvent; /* |