summaryrefslogtreecommitdiff
path: root/src/pluginlist.h
diff options
context:
space:
mode:
authorThomas Tanner <trtanner@btinternet.com>2015-11-25 14:23:58 +0000
committerThomas Tanner <trtanner@btinternet.com>2015-11-25 14:23:58 +0000
commitb9b12ca765d1703ac2e3852746e7acc3a20949a9 (patch)
treea0465afad62c89e36f49fda78653ce2d91010612 /src/pluginlist.h
parent78b686b2bc507a5606bc7c673745b02346bc667a (diff)
Bunch of const correctness changes. There shouldn't be any update of plugin games once MO has started
Diffstat (limited to 'src/pluginlist.h')
-rw-r--r--src/pluginlist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h
index 01d4bfbe..9fe6eeac 100644
--- a/src/pluginlist.h
+++ b/src/pluginlist.h
@@ -261,7 +261,7 @@ public slots:
* @brief The currently managed game has changed
* @param gamePlugin
*/
- void managedGameChanged(MOBase::IPluginGame *gamePlugin);
+ void managedGameChanged(MOBase::IPluginGame const *gamePlugin);
signals:
@@ -347,7 +347,7 @@ private:
QTemporaryFile m_TempFile;
- MOBase::IPluginGame *m_GamePlugin;
+ MOBase::IPluginGame const *m_GamePlugin;
};