| 51 | } |
| 52 | |
| 53 | void CallbackTask::finishedWithError(int errorCode, QString const & errorMessage) { |
| 54 | this->cb_errorCode = errorCode; |
| 55 | this->cb_errorMessage = errorMessage; |
| 56 | this->cb_isFinished = true; |
| 57 | this->cb_finishedSuccessfully = false; |
| 58 | |
| 59 | emit finished(this); |
| 60 | } |
| 61 | |
| 62 | bool CallbackTask::hasFinished() const { |
| 63 | return cb_isFinished; |
nothing calls this directly
no outgoing calls
no test coverage detected