1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-28 23:48:45 +01:00

Use SafelyProcessEvent

This commit is contained in:
Paul Licameli
2016-11-18 10:49:28 -05:00
parent 8e5975b10d
commit 006aeda0a9

View File

@@ -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)