| 2058 | } |
| 2059 | |
| 2060 | bool AppFrame::actionOnMenuTips(wxCommandEvent &event) { |
| 2061 | if (event.GetId() == wxID_SET_TIPS) { |
| 2062 | wxGetApp().getConfig()->setShowTips(!wxGetApp().getConfig()->getShowTips()); |
| 2063 | return true; |
| 2064 | } |
| 2065 | return false; |
| 2066 | } |
| 2067 | |
| 2068 | bool AppFrame::actionOnMenuPerformance(wxCommandEvent &event) { |
| 2069 | if (event.GetId() >= wxID_PERF_BASE && event.GetId() <= wxID_PERF_BASE + (int) AppConfig::PERF_HIGH) { |
nothing calls this directly
no test coverage detected