Error handling
| 159 | |
| 160 | // Error handling |
| 161 | void setError(const QString &reason) |
| 162 | { |
| 163 | decoderState = DecoderState::Error; |
| 164 | errorString = reason; |
| 165 | } |
| 166 | bool setErrorB(const QString &reason) |
| 167 | { |
| 168 | setError(reason); |
no outgoing calls
no test coverage detected