Make it work again

This commit is contained in:
fbraem
2013-02-13 19:10:57 +01:00
parent 913020e89d
commit 9765ccf587
27 changed files with 531 additions and 195 deletions

View File

@@ -133,7 +133,7 @@ void Document::read(BinaryReader& reader)
std::string Document::toString() const
{
std::ostringstream oss;
for(ElementSet::iterator it = _elements.begin(); it != _elements.end(); ++it)
for(ElementSet::const_iterator it = _elements.begin(); it != _elements.end(); ++it)
{
oss << (*it)->name() << " ";
}