Skip processing in OnTextEnter so normal return processing works.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31465 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2005-01-18 17:44:56 +00:00
parent 329a2be820
commit cd2e10d695

View File

@ -815,6 +815,7 @@ void TextWidgetsPage::OnText(wxCommandEvent& WXUNUSED(event))
void TextWidgetsPage::OnTextEnter(wxCommandEvent& event)
{
wxLogMessage(_T("Text entered: '%s'"), event.GetString().c_str());
event.Skip();
}
void TextWidgetsPage::OnCheckOrRadioBox(wxCommandEvent& WXUNUSED(event))