summaryrefslogtreecommitdiff
path: root/src/organizercore.h
diff options
context:
space:
mode:
authorTannin <sherb@gmx.net>2015-12-28 14:33:30 +0100
committerTannin <sherb@gmx.net>2015-12-28 14:33:30 +0100
commit1bfc91046badb609261c78b4b5e03bba4dcb61bd (patch)
tree8b19d71b29a63edaa92bddc2e7d14cfed023d3df /src/organizercore.h
parent502e950cde5920e4184775c47621cb737696f512 (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.h4
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;