| 194 | } |
| 195 | |
| 196 | void SvnJobBase::internalJobFailed() |
| 197 | { |
| 198 | qCDebug(PLUGIN_SVN) << "job failed" << this; |
| 199 | |
| 200 | setError(InternalJobFailed); |
| 201 | QString msg = internalJob()->errorMessage(); |
| 202 | if( !msg.isEmpty() ) |
| 203 | setErrorText( i18n( "Error executing Job:\n%1", msg ) ); |
| 204 | outputMessage(errorText()); |
| 205 | failJob(); |
| 206 | } |
| 207 | |
| 208 | void SvnJobBase::failJob() |
| 209 | { |
nothing calls this directly
no test coverage detected