| 58 | class ActionDialogBookmarkReset : public ActionDialog { |
| 59 | public: |
| 60 | ActionDialogBookmarkReset() : ActionDialog(wxGetApp().getAppFrame(), wxID_ANY, wxT("Reset Bookmarks?")) { |
| 61 | m_questionText->SetLabelText(wxT("Resetting bookmarks will erase all current bookmarks; are you sure?")); |
| 62 | } |
| 63 | |
| 64 | void doClickOK() override { |
| 65 | wxGetApp().getBookmarkMgr().resetBookmarks(); |
nothing calls this directly
no test coverage detected