| 110 | } |
| 111 | |
| 112 | void EngineProcess::close() |
| 113 | { |
| 114 | if (!m_started) |
| 115 | return; |
| 116 | |
| 117 | emit aboutToClose(); |
| 118 | kill(); |
| 119 | waitForFinished(-1); |
| 120 | cleanup(); |
| 121 | QIODevice::close(); |
| 122 | } |
| 123 | |
| 124 | bool EngineProcess::isSequential() const |
| 125 | { |
no outgoing calls
no test coverage detected