This commit is contained in:
lasconic 2014-07-15 12:58:23 +02:00
parent a2c0bf6188
commit 4b989f8251
2 changed files with 0 additions and 7 deletions

View file

@ -742,9 +742,7 @@ Score::FileError Score::read114(XmlReader& e)
// treat reading a 1.2 file as import
// on save warn if old file will be overwritten
setCreated(true);
setDirty(true);
return FileError::FILE_NO_ERROR;
}

View file

@ -1802,11 +1802,6 @@ Score::FileError readScore(Score* score, QString name, bool ignoreVersionError)
Score::FileError rv = score->loadMsc(name, ignoreVersionError);
if (rv != Score::FileError::FILE_NO_ERROR)
return rv;
// if(score->mscVersion() <= 114) {
// score->setCreated(true); // force save as for imported files
// }
// else
// score->setCreated(false);
}
else {
typedef Score::FileError (*ImportFunction)(Score*, const QString&);