Send EVT_TEXT from wxTextCtrl::SetValue to conform with the wx standard

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31207 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-12-31 23:01:01 +00:00
parent e505d15e07
commit e8b4fd4bc1

View File

@ -433,6 +433,11 @@ void wxTextCtrl::SetValue(const wxString& str)
return ;
GetPeer()->SetStringValue(str) ;
wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, m_windowId);
event.SetString( GetValue() ) ;
event.SetEventObject( this );
GetEventHandler()->ProcessEvent(event);
}
void wxTextCtrl::SetMaxLength(unsigned long len)