mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-28 23:48:45 +01:00
Use SafelyProcessEvent
This commit is contained in:
@@ -563,7 +563,9 @@ void AButton::Click()
|
||||
{
|
||||
wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, GetId());
|
||||
event.SetEventObject(this);
|
||||
GetEventHandler()->ProcessEvent(event);
|
||||
// Be sure to use SafelyProcessEvent so that exceptions do not propagate
|
||||
// out of DoDefaultAction
|
||||
GetEventHandler()->SafelyProcessEvent(event);
|
||||
}
|
||||
|
||||
void AButton::SetShift(bool shift)
|
||||
|
||||
Reference in New Issue
Block a user