| 92 | } |
| 93 | |
| 94 | void BreakpointView::contextCopy() |
| 95 | { |
| 96 | const QItemSelectionModel* selModel = m_ui.breakpointList->selectionModel(); |
| 97 | |
| 98 | if (!selModel->hasSelection()) |
| 99 | return; |
| 100 | |
| 101 | QGuiApplication::clipboard()->setText(m_model->data(selModel->currentIndex()).toString()); |
| 102 | } |
| 103 | |
| 104 | void BreakpointView::contextDelete() |
| 105 | { |