+bool wxChoice::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
+{
+ if ( param != LBN_SELCHANGE)
+ {
+ // "selection changed" is the only event we're after
+ return false;
+ }
+
+ int n = GetSelection();
+ if (n > -1)
+ {
+ wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, m_windowId);
+ event.SetInt(n);
+ event.SetEventObject(this);
+ event.SetString(GetStringSelection());
+ if ( HasClientObjectData() )
+ event.SetClientObject( GetClientObject(n) );
+ else if ( HasClientUntypedData() )
+ event.SetClientData( GetClientData(n) );
+ ProcessCommand(event);
+ }
+
+ return true;
+}
+