-void wxChoice::SendSelectionChangedEvent(wxEventType evt_type)
-{
- if (GetSelection() == -1)
- return;
-
- wxCommandEvent event( evt_type, GetId() );
-
- int n = GetSelection();
- event.SetInt( n );
- event.SetString( GetStringSelection() );
- event.SetEventObject( this );
- InitCommandEventWithItems( event, n );
-
- HandleWindowEvent( event );
-}
-