| 428 | } |
| 429 | |
| 430 | bool MainWindow::queryClose() |
| 431 | { |
| 432 | if (!Core::self()->documentControllerInternal()->saveAllDocumentsForWindow( |
| 433 | this, IDocumentController::SaveSelectionMode::LetUserSelect)) { |
| 434 | return false; |
| 435 | } |
| 436 | |
| 437 | return Sublime::MainWindow::queryClose(); |
| 438 | } |
| 439 | |
| 440 | void MainWindow::documentActivated(const QPointer<KTextEditor::Document>& textDocument) |
| 441 | { |
nothing calls this directly
no test coverage detected