From 16c0e7305c55853f3a82c56bbc3cb2902f4141ad Mon Sep 17 00:00:00 2001 From: Ryan Norton Date: Sat, 6 Nov 2004 23:14:16 +0000 Subject: [PATCH] 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 --- include/wx/defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.45.2