| 61 | } |
| 62 | |
| 63 | void ExternalResourcesPage::ShowContextMenu(const QPoint& pos) |
| 64 | { |
| 65 | auto menu = ui->actionsToolbar->createContextMenu(this, tr("Context menu")); |
| 66 | if(menu->actions().contains(ui->actionUpdateItem)) { |
| 67 | menu->insertAction(ui->actionUpdateItem, ui->actionDisableUpdates); |
| 68 | } |
| 69 | menu->exec(ui->treeView->mapToGlobal(pos)); |
| 70 | delete menu; |
| 71 | } |
| 72 | |
| 73 | void ExternalResourcesPage::openedImpl() |
| 74 | { |
nothing calls this directly
no test coverage detected