| 72 | } |
| 73 | |
| 74 | void MultiStatus::AddAll(IStatus::Pointer status) |
| 75 | { |
| 76 | Q_ASSERT(status); |
| 77 | QList<IStatus::Pointer> statuses(status->GetChildren()); |
| 78 | for (int i = 0; i < statuses.size(); i++) |
| 79 | { |
| 80 | this->Add(statuses[i]); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | QList<IStatus::Pointer> MultiStatus::GetChildren() const |
| 85 | { |
no test coverage detected