Added automatically saving DB after change

This commit is contained in:
Thom Troy 2012-06-10 15:28:46 +01:00 committed by Florian Geyer
parent 871cdc5bb8
commit 17f4e23215
4 changed files with 27 additions and 0 deletions

View file

@ -523,8 +523,17 @@ void DatabaseTabWidget::modified()
{
Q_ASSERT(qobject_cast<Database*>(sender()));
if (config()->get("AutoSaveAfterEveryChange").toBool()) {
config()->set("LastDatabases", QVariant());
}
Database* db = static_cast<Database*>(sender());
DatabaseManagerStruct& dbStruct = m_dbList[db];
if (config()->get("AutoSaveAfterEveryChange").toBool() && dbStruct.file) {
saveDatabase(db);
return;
}
if (!dbStruct.modified) {
dbStruct.modified = true;
updateTabName(db);