Spacing
This commit is contained in:
parent
0573c09b50
commit
bdf55f105e
|
@ -337,12 +337,12 @@ void Event::updateNotes(const StringSetMap &newNoteSetMap) {
|
||||||
if (newNoteSet.size() > 0) {
|
if (newNoteSet.size() > 0) {
|
||||||
StringSetMap::iterator noteSetMapIter = noteSetMap.find(newNoteGroup);
|
StringSetMap::iterator noteSetMapIter = noteSetMap.find(newNoteGroup);
|
||||||
if (noteSetMapIter == noteSetMap.end()) {
|
if (noteSetMapIter == noteSetMap.end()) {
|
||||||
//Info( "Can't find note group %s, copying %d strings", newNoteGroup.c_str(), newNoteSet.size() );
|
//Debug(3, "Can't find note group %s, copying %d strings", newNoteGroup.c_str(), newNoteSet.size());
|
||||||
noteSetMap.insert(StringSetMap::value_type(newNoteGroup, newNoteSet));
|
noteSetMap.insert(StringSetMap::value_type(newNoteGroup, newNoteSet));
|
||||||
update = true;
|
update = true;
|
||||||
} else {
|
} else {
|
||||||
StringSet ¬eSet = noteSetMapIter->second;
|
StringSet ¬eSet = noteSetMapIter->second;
|
||||||
//Info( "Found note group %s, got %d strings", newNoteGroup.c_str(), newNoteSet.size() );
|
//Debug(3, "Found note group %s, got %d strings", newNoteGroup.c_str(), newNoteSet.size());
|
||||||
for (StringSet::const_iterator newNoteSetIter = newNoteSet.begin();
|
for (StringSet::const_iterator newNoteSetIter = newNoteSet.begin();
|
||||||
newNoteSetIter != newNoteSet.end();
|
newNoteSetIter != newNoteSet.end();
|
||||||
++newNoteSetIter) {
|
++newNoteSetIter) {
|
||||||
|
|
Loading…
Reference in New Issue