| 734 | |
| 735 | |
| 736 | void DocumentController::fileClose() |
| 737 | { |
| 738 | IDocument *activeDoc = activeDocument(); |
| 739 | if (activeDoc) |
| 740 | { |
| 741 | UiController *uiController = Core::self()->uiControllerInternal(); |
| 742 | Sublime::View *activeView = uiController->activeSublimeWindow()->activeView(); |
| 743 | |
| 744 | uiController->activeArea()->closeView(activeView); |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | void DocumentController::notifyDocumentClosed(Sublime::Document* doc_) |
| 749 | { |
nothing calls this directly
no test coverage detected