Fix text formatting in event's note

This commit is contained in:
Emmanuel Papin 2015-03-08 14:33:55 +01:00
parent 63158ebe7d
commit 56b724e161
3 changed files with 6 additions and 6 deletions

View File

@ -202,7 +202,7 @@ void Event::createNotes( std::string &notes )
for ( StringSetMap::const_iterator mapIter = noteSetMap.begin(); mapIter != noteSetMap.end(); mapIter++ )
{
notes += mapIter->first;
notes += ": ";
notes += ":\n";
const StringSet &stringSet = mapIter->second;
for ( StringSet::const_iterator setIter = stringSet.begin(); setIter != stringSet.end(); setIter++ )
{