| 31 | } |
| 32 | |
| 33 | MultiStatus::MultiStatus(const QString& pluginId, int code, |
| 34 | const QList<IStatus::Pointer>& newChildren, |
| 35 | const QString& message, const SourceLocation& sl) |
| 36 | : Status(OK_TYPE, pluginId, code, message, sl), children(newChildren) |
| 37 | { |
| 38 | this->SetSeverity(GetMaxSeverity(children)); |
| 39 | } |
| 40 | |
| 41 | MultiStatus::MultiStatus(const QString& pluginId, int code, |
| 42 | const QList<IStatus::Pointer>& newChildren, |
nothing calls this directly
no test coverage detected