| 763 | |
| 764 | |
| 765 | void BookmarkView::doBookmarkRecent(const std::string& group, const BookmarkEntryPtr& be) { |
| 766 | |
| 767 | wxGetApp().getBookmarkMgr().addBookmark(group, be); |
| 768 | nextEnt = be; |
| 769 | wxGetApp().getBookmarkMgr().removeRecent(be); |
| 770 | wxGetApp().getBookmarkMgr().updateBookmarks(); |
| 771 | bookmarkSelection(be); |
| 772 | } |
| 773 | |
| 774 | |
| 775 | void BookmarkView::doMoveBookmark(const BookmarkEntryPtr& be, const std::string& group) { |
nothing calls this directly
no test coverage detected