diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-12-04 19:32:11 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-12-04 19:32:11 +0100 |
| commit | 8b02a5a7965440b883e9601ece0e30bca1169a65 (patch) | |
| tree | 89ec90646a82c46928d722a5ebd379476307bc5a /src/plugincontainer.h | |
| parent | a1ab717e9e4fd72071cd01d9ceb74e7ba10ffafd (diff) | |
Fix crash when starting MO2 without instance.
Diffstat (limited to 'src/plugincontainer.h')
| -rw-r--r-- | src/plugincontainer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugincontainer.h b/src/plugincontainer.h index 4eb30db6..386b9bca 100644 --- a/src/plugincontainer.h +++ b/src/plugincontainer.h @@ -462,8 +462,10 @@ private: MOBase::IPlugin* registerPlugin(QObject *pluginObj, const QString &fileName, MOBase::IPluginProxy *proxy);
+ // Core organizer, can be null (e.g. on first MO2 startup).
OrganizerCore *m_Organizer;
+ // Main user interface, can be null until MW has been initialized.
IUserInterface *m_UserInterface;
PluginMap m_Plugins;
|
