| 499 | } |
| 500 | |
| 501 | void Container::statusChanged(Sublime::View* view) |
| 502 | { |
| 503 | Q_D(Container); |
| 504 | |
| 505 | const auto statusText = view->viewStatus(); |
| 506 | d->statusCorner->setText(statusText); |
| 507 | d->statusCorner->setVisible(!statusText.isEmpty()); |
| 508 | } |
| 509 | |
| 510 | void Container::statusIconChanged(Document* doc) |
| 511 | { |
nothing calls this directly
no test coverage detected