Fixed database loading due to uninitialized property.
This commit is contained in:
parent
4340f5c250
commit
ff375981b2
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@
|
||||||
|
|
||||||
QPointer<DatabaseFactory> DatabaseFactory::s_instance;
|
QPointer<DatabaseFactory> DatabaseFactory::s_instance;
|
||||||
|
|
||||||
DatabaseFactory::DatabaseFactory(QObject *parent) : QObject(parent) {
|
DatabaseFactory::DatabaseFactory(QObject *parent)
|
||||||
|
: QObject(parent), m_initialized(false) {
|
||||||
assemblyDatabaseFilePath();
|
assemblyDatabaseFilePath();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue