62 wxString message = _T(
"Are you sure you want to restart simulation?");
63 wxString title = _T(
"Confirm kill");
64 wxMessageDialog dialog(
65 parentWindow(), message, title, wxYES_NO | wxCENTRE | wxICON_QUESTION);
67 if (dialog.ShowModal() == wxID_YES) {
68 wxGetApp().simulation()->killSimulation();