Applied patch [ 1312729 ] fix for wxMac Carbon spin control on EVT_TEXT emitter

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2006-01-18 09:55:40 +00:00
parent 6091caf088
commit 4a99d87f2c

View File

@@ -63,6 +63,7 @@ protected:
// Send event that the text was manually changed
wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, m_spin->GetId());
event.SetEventObject(m_spin);
event.SetString(m_spin->GetText()->GetValue());
event.SetInt(val);
m_spin->GetEventHandler()->ProcessEvent(event);