From cdb105516c7934613e22c4ae2b0936ea77ad17ca Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 23 Aug 2002 20:35:24 +0000 Subject: [PATCH] mention the key code changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16719 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/changes.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index b4528c53ba..24b4bc9d33 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -64,6 +64,10 @@ All (GUI): generated at all, so you must call event.Skip() in your OnKeyDown() if you want to get OnChar() as well +- in general, the key events sent for the various non ASCII key combinations + have been changed to make them consistent over all supported platforms, + please see the wxKeyEvent documentation for details + - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO have changed (to fix some unfortunate clashes), please check your code to ensure that no tests for wxYES or wxNO are broken: for example, the following