| 1389 | } |
| 1390 | |
| 1391 | void BookmarkView::onUpdateRange( wxCommandEvent& /* event */ ) { |
| 1392 | |
| 1393 | TreeViewItem *curSel = itemToTVI(m_treeView->GetSelection()); |
| 1394 | |
| 1395 | if (curSel && curSel->type == TreeViewItem::Type::TREEVIEW_ITEM_TYPE_RANGE) { |
| 1396 | ActionDialog::showDialog(new ActionDialogUpdateRange(curSel->rangeEnt)); |
| 1397 | } |
| 1398 | } |
| 1399 | |
| 1400 | void BookmarkView::onTreeBeginDrag( wxTreeEvent& event ) { |
| 1401 |
nothing calls this directly
no outgoing calls
no test coverage detected