From 645853b2dc6c91664d15a1e3262658d6886ebe69 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 17 Mar 2015 13:52:28 +0100 Subject: [PATCH] Correct the description of WXK_RETURN handling in wxTextCtrl. This key is not used for navigating between the controls (like WXK_TAB) any longer, but only for activating the default button. --- interface/wx/textctrl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/textctrl.h b/interface/wx/textctrl.h index 9b8f431ff7..c2cf5a4ff7 100644 --- a/interface/wx/textctrl.h +++ b/interface/wx/textctrl.h @@ -945,7 +945,7 @@ public: @style{wxTE_PROCESS_ENTER} The control will generate the event @c wxEVT_TEXT_ENTER (otherwise pressing Enter key is either processed internally by the - control or used for navigation between dialog controls). + control or used to activate the default button of the dialog, if any). @style{wxTE_PROCESS_TAB} The control will receive @c wxEVT_CHAR events for TAB pressed - normally, TAB is used for passing to the next control in a dialog