X-Git-Url: https://vaikene.ee/gitweb/pswgen11.html?a=blobdiff_plain;f=src%2Fapps%2FPswGen%2FStorage%2Fmodule.cpp;h=b062b305453975aaef87fee517f455a9efe6d6c0;hb=8d44aa97324c1fb3e5d36d03d5d6b7386cbb589e;hp=ab591b7a20d073fa96b0d474a5b058a15043b0e8;hpb=37ff4c7dcaf312c1fd359bc824ca84de53411101;p=evaf diff --git a/src/apps/PswGen/Storage/module.cpp b/src/apps/PswGen/Storage/module.cpp index ab591b7..b062b30 100644 --- a/src/apps/PswGen/Storage/module.cpp +++ b/src/apps/PswGen/Storage/module.cpp @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include @@ -108,7 +108,7 @@ bool StorageImpl::init() if (!QSqlDatabase::contains(DbConnectionName)) { // No database connection yet mDb = QSqlDatabase::addDatabase("QSQLITE", DbConnectionName); - mDb.setDatabaseName(Common::iEnv::instance()->dataRootDir() + DbName); + mDb.setDatabaseName(Common::iApp::instance()->dataRootDir() + DbName); if (!mDb.open()) { QSqlError err = mDb.lastError(); EVAF_ERROR("Failed to open database : %s", qPrintable(err.text())); @@ -231,7 +231,7 @@ bool StorageImpl::loadData() while (q.next()) { QString name = q.value(0).toString(); - QExplicitlySharedDataPointer data(new Storage::Data(q.value(1).toInt(), uint(q.value(2).toInt()))); + QExplicitlySharedDataPointer data(new Storage::Data(name, q.value(1).toInt(), uint(q.value(2).toInt()))); mData.insert(name, data); }