| 1341 | |
| 1342 | |
| 1343 | void BookmarkView::onAddRange( wxCommandEvent& /* event */ ) { |
| 1344 | |
| 1345 | BookmarkRangeEntryPtr re = BookmarkView::makeActiveRangeEntry(); |
| 1346 | |
| 1347 | re->label = m_labelText->GetValue(); |
| 1348 | |
| 1349 | wxGetApp().getBookmarkMgr().addRange(re); |
| 1350 | wxGetApp().getBookmarkMgr().updateActiveList(); |
| 1351 | } |
| 1352 | |
| 1353 | |
| 1354 | void BookmarkView::onRemoveRange( wxCommandEvent& /* event */ ) { |
nothing calls this directly
no test coverage detected