| 705 | } |
| 706 | |
| 707 | void KDevelop::TextDocument::unpopulateContextMenu() |
| 708 | { |
| 709 | Q_D(TextDocument); |
| 710 | |
| 711 | auto* menu = qobject_cast<QMenu*>(sender()); |
| 712 | |
| 713 | disconnect(menu, &QMenu::aboutToHide, this, &TextDocument::unpopulateContextMenu); |
| 714 | |
| 715 | d->cleanContextMenu(); |
| 716 | } |
| 717 | |
| 718 | void KDevelop::TextDocument::populateContextMenu( KTextEditor::View* v, QMenu* menu ) |
| 719 | { |
nothing calls this directly
no test coverage detected