Library: fix misleading indentation

This commit is contained in:
François Gannaz
2019-04-01 10:32:47 +02:00
parent 3babc0980e
commit 2189e19a91

View File

@ -753,8 +753,8 @@ bool DataBaseManagement::updateToCurrentVersion(const QString & path)
if(compareVersions(DataBaseManagement::checkValidDB(fullPath),"9.5.0")<0) if(compareVersions(DataBaseManagement::checkValidDB(fullPath),"9.5.0")<0)
pre9_5 = true; pre9_5 = true;
QSqlDatabase db = loadDatabaseFromFile(fullPath); QSqlDatabase db = loadDatabaseFromFile(fullPath);
bool returnValue = false; bool returnValue = false;
if(db.isValid() && db.isOpen()) if(db.isValid() && db.isOpen())
{ {
QSqlQuery updateVersion(db); QSqlQuery updateVersion(db);