From: Ryan Norton Date: Sat, 6 Nov 2004 23:14:16 +0000 (+0000) Subject: fix for [ 1042972 ] Keycodes above WXK_START conflict with unicode characters X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/16c0e7305c55853f3a82c56bbc3cb2902f4141ad fix for [ 1042972 ] Keycodes above WXK_START conflict with unicode characters git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30324 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/defs.h b/include/wx/defs.h index 76ded59ec7..ea24353db0 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -1874,7 +1874,7 @@ enum wxKeyCode WXK_SPACE = 32, WXK_DELETE = 127, - WXK_START = 300, + WXK_START = 65536, /* Above max short to avoid conflict with unicode chars */ WXK_LBUTTON, WXK_RBUTTON, WXK_CANCEL,