| 401 | } |
| 402 | |
| 403 | void Core::shutdown() |
| 404 | { |
| 405 | qCDebug(SHELL) << "Shutting down Core"; |
| 406 | |
| 407 | if (!d->m_shuttingDown) { |
| 408 | cleanup(); |
| 409 | deleteLater(); |
| 410 | } |
| 411 | |
| 412 | qCDebug(SHELL) << "Shutdown done"; |
| 413 | } |
| 414 | |
| 415 | bool Core::shuttingDown() const |
| 416 | { |
no test coverage detected