| 30 | } |
| 31 | |
| 32 | void CompositeStringSource::appendSource(AbstractStringSource * source) |
| 33 | { |
| 34 | assert(source != nullptr); |
| 35 | |
| 36 | m_sources.push_back(source); |
| 37 | source->registerListener(this); |
| 38 | changed(); |
| 39 | } |
| 40 | |
| 41 | void CompositeStringSource::notifyChanged(const Changeable *) |
| 42 | { |
no test coverage detected