Skip to content

Commit

Permalink
Fix definition of c.s.j.p.unix.X11.XK_Shift_R
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasblaesing committed Mar 8, 2022
1 parent 69bf22f commit d22a9c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
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).
* [#XXXX](https://github.com/java-native-access/jna/pull/XXXX): 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
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 d22a9c0

Please sign in to comment.