| 421 | } |
| 422 | |
| 423 | void RefactorWidget::declineRefactoring() |
| 424 | { |
| 425 | if (m_isClosing) return; |
| 426 | m_isClosing = true; |
| 427 | |
| 428 | if (m_declineCallback) { |
| 429 | m_declineCallback(); |
| 430 | } |
| 431 | emit declined(); |
| 432 | close(); |
| 433 | } |
| 434 | |
| 435 | void RefactorWidget::paintEvent(QPaintEvent *) |
| 436 | { |
nothing calls this directly
no outgoing calls
no test coverage detected