13
0

also log session-load error to stderr.

If the session fails to load, the editor and error-log window will
never be visible.
This commit is contained in:
Robin Gareus 2015-06-19 22:54:22 +02:00
parent 10203b5517
commit b66cc472e8

View File

@ -1737,11 +1737,13 @@ TempoMap::set_state (const XMLNode& node, int /*version*/)
if (prev != metrics.end()) {
if (dynamic_cast<MeterSection*>(*prev) && dynamic_cast<MeterSection*>(*i)) {
if ((*prev)->start() == (*i)->start()) {
cerr << string_compose (_("Multiple meter definitions found at %1"), (*prev)->start()) << endmsg;
error << string_compose (_("Multiple meter definitions found at %1"), (*prev)->start()) << endmsg;
return -1;
}
} else if (dynamic_cast<TempoSection*>(*prev) && dynamic_cast<TempoSection*>(*i)) {
if ((*prev)->start() == (*i)->start()) {
cerr << string_compose (_("Multiple tempo definitions found at %1"), (*prev)->start()) << endmsg;
error << string_compose (_("Multiple tempo definitions found at %1"), (*prev)->start()) << endmsg;
return -1;
}