Skip to content

Commit

Permalink
Merge pull request #1414 from matthiasblaesing/x11_syms
Browse files Browse the repository at this point in the history
Fix definition of `c.s.j.p.unix.X11.XK_Shift_R`
  • Loading branch information
matthiasblaesing authored Mar 8, 2022
2 parents 69bf22f + a320708 commit f5d11e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Features
Bug Fixes
---------
* [#1411](https://github.com/java-native-access/jna/pull/1411): Do not throw `Win32Exception` on success for empty section in `Kernel32Util#getPrivateProfileSection` - [@mkarg](https://github.com/mkarg).
* [#1414](https://github.com/java-native-access/jna/pull/1414): Fix definition of `c.s.j.p.unix.X11.XK_Shift_R` - [@matthiasblaesing](https://github.com/matthiasblaesing).

Release 5.10.0
==============
Expand Down
2 changes: 1 addition & 1 deletion contrib/platform/src/com/sun/jna/platform/unix/X11.java
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ class XSetWindowAttributes extends Structure {
int XK_a = 0x61;
int XK_z = 0x7a;
int XK_Shift_L = 0xffe1;
int XK_Shift_R = 0xffe1;
int XK_Shift_R = 0xffe2;
int XK_Control_L = 0xffe3;
int XK_Control_R = 0xffe4;
int XK_CapsLock = 0xffe5;
Expand Down

0 comments on commit f5d11e2

Please sign in to comment.