git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31029
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
InitCommandEvent(event);
event.SetString(GetValue());
event.SetInt(GetSelection());
InitCommandEvent(event);
event.SetString(GetValue());
event.SetInt(GetSelection());
+ if ( ProcessCommand(event) )
+ {
+ // don't let the event through to the native control
+ // because it doesn't need it and may generate an annoying
+ // beep if it gets it
+ return true;
+ }
}
return HandleChar(wParam, lParam, true /* isASCII */);
}
return HandleChar(wParam, lParam, true /* isASCII */);