| 68 | } |
| 69 | |
| 70 | void RefactorWidgetHandler::hideRefactorWidget() |
| 71 | { |
| 72 | if (!m_refactorWidget.isNull()) { |
| 73 | m_refactorWidget->close(); |
| 74 | m_refactorWidget = nullptr; |
| 75 | } |
| 76 | m_editor = nullptr; |
| 77 | } |
| 78 | |
| 79 | void RefactorWidgetHandler::setApplyCallback(std::function<void(const QString &)> callback) |
| 80 | { |
nothing calls this directly
no outgoing calls
no test coverage detected