| 1641 | */ |
| 1642 | |
| 1643 | void WConfiguration::OnButtonChangeCameraClick( wxCommandEvent& event ) |
| 1644 | { |
| 1645 | wxGetApp().GetController().ChangeCamera (); |
| 1646 | wxMessageDialog dlg (NULL, _("You should restart the application to apply this change"), |
| 1647 | _T("Enable Viacam"), wxICON_INFORMATION ); |
| 1648 | dlg.ShowModal (); |
| 1649 | |
| 1650 | event.Skip(false); |
| 1651 | Changed (); |
| 1652 | } |
| 1653 | |
| 1654 | |
| 1655 | /*! |
nothing calls this directly
no test coverage detected