utility: Fileendings for DB and Settings changed

changed DB from .sqlite to .coatidb and Projectsettings from .xml to .coatiproject
This commit is contained in:
Andreas Stallinger
2015-11-30 16:02:05 +01:00
parent bfaceceb29
commit 77466bb57e
7 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ void Project::setProjectSettingsFilePath(const FilePath& path)
}
else if (m_projectSettingsFilepath != path)
{
FilePath dbPath = FilePath(path).replaceExtension("sqlite");
FilePath dbPath = FilePath(path).replaceExtension("coatidb");
m_storageWasLoaded = dbPath.exists();
m_storage = std::make_shared<Storage>(dbPath);