diff options
| author | Tannin <sherb@gmx.net> | 2015-12-28 14:33:30 +0100 |
|---|---|---|
| committer | Tannin <sherb@gmx.net> | 2015-12-28 14:33:30 +0100 |
| commit | 1bfc91046badb609261c78b4b5e03bba4dcb61bd (patch) | |
| tree | 8b19d71b29a63edaa92bddc2e7d14cfed023d3df /src/organizercore.h | |
| parent | 502e950cde5920e4184775c47621cb737696f512 (diff) | |
removed get-prefix from many getters. removed const from managed_game variable.
other fixes
Diffstat (limited to 'src/organizercore.h')
| -rw-r--r-- | src/organizercore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/organizercore.h b/src/organizercore.h index ff730c2b..d86033eb 100644 --- a/src/organizercore.h +++ b/src/organizercore.h @@ -74,7 +74,7 @@ public: void connectPlugins(PluginContainer *container);
void disconnectPlugins();
- void setManagedGame(const MOBase::IPluginGame *game);
+ void setManagedGame(MOBase::IPluginGame *game);
void updateExecutablesList(QSettings &settings);
@@ -239,7 +239,7 @@ private: IUserInterface *m_UserInterface;
PluginContainer *m_PluginContainer;
QString m_GameName;
- MOBase::IPluginGame const *m_GamePlugin;
+ MOBase::IPluginGame *m_GamePlugin;
Profile *m_CurrentProfile;
|
