| 409 | } |
| 410 | |
| 411 | void RefactorWidget::applyRefactoring() |
| 412 | { |
| 413 | if (m_isClosing) return; |
| 414 | m_isClosing = true; |
| 415 | |
| 416 | if (m_applyCallback) { |
| 417 | m_applyCallback(m_applyText); |
| 418 | } |
| 419 | emit applied(); |
| 420 | close(); |
| 421 | } |
| 422 | |
| 423 | void RefactorWidget::declineRefactoring() |
| 424 | { |
nothing calls this directly
no outgoing calls
no test coverage detected