Readd zone name in event's notes
This commit is contained in:
parent
cdcac7726b
commit
40c3ba1ed3
|
@ -201,15 +201,11 @@ void Event::createNotes( std::string ¬es )
|
||||||
notes.clear();
|
notes.clear();
|
||||||
for ( StringSetMap::const_iterator mapIter = noteSetMap.begin(); mapIter != noteSetMap.end(); mapIter++ )
|
for ( StringSetMap::const_iterator mapIter = noteSetMap.begin(); mapIter != noteSetMap.end(); mapIter++ )
|
||||||
{
|
{
|
||||||
// No need to display the cause inside the note
|
notes += mapIter->first;
|
||||||
//notes += mapIter->first;
|
notes += ": ";
|
||||||
//notes += ": ";
|
|
||||||
const StringSet &stringSet = mapIter->second;
|
const StringSet &stringSet = mapIter->second;
|
||||||
for ( StringSet::const_iterator setIter = stringSet.begin(); setIter != stringSet.end(); setIter++ )
|
for ( StringSet::const_iterator setIter = stringSet.begin(); setIter != stringSet.end(); setIter++ )
|
||||||
{
|
{
|
||||||
// Don't format here
|
|
||||||
//if ( setIter != stringSet.begin() )
|
|
||||||
// notes += ", ";
|
|
||||||
notes += *setIter;
|
notes += *setIter;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue