Fixed database loading due to uninitialized property.
This commit is contained in:
parent
4340f5c250
commit
ff375981b2
@ -11,7 +11,8 @@
|
||||
|
||||
QPointer<DatabaseFactory> DatabaseFactory::s_instance;
|
||||
|
||||
DatabaseFactory::DatabaseFactory(QObject *parent) : QObject(parent) {
|
||||
DatabaseFactory::DatabaseFactory(QObject *parent)
|
||||
: QObject(parent), m_initialized(false) {
|
||||
assemblyDatabaseFilePath();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user