summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authorThomas Tanner <trtanner@btinternet.com>2015-12-06 15:47:40 +0000
committerThomas Tanner <trtanner@btinternet.com>2015-12-06 15:49:56 +0000
commit750239bebb992ee673f39da98f413ab0f2e1f002 (patch)
tree4fc3a4f2c56a41d750baab84c392eec09fe6f75f /src/settings.h
parentcb09ace972731ecc9b0fb653b88d4c599f4530fc (diff)
parent865c75a499fe2319ed07e36d8d5d987032058882 (diff)
Merge branch 'master' into issue/344
# Conflicts: # src/gameinfoimpl.cpp # src/gameinfoimpl.h # src/shared/fallout3info.h # src/shared/falloutnvinfo.h # src/shared/gameinfo.h # src/shared/oblivioninfo.h # src/shared/skyriminfo.h
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/settings.h b/src/settings.h
index def1dc5c..1ee16e76 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -299,7 +299,7 @@ public:
public slots:
- void managedGameChanged(MOBase::IPluginGame *gamePlugin);
+ void managedGameChanged(MOBase::IPluginGame const *gamePlugin);
private:
@@ -328,7 +328,7 @@ private:
};
/** Display/store the configuration in the 'general' tab of the settings dialogue */
- class GeneralTab : SettingsTab
+ class GeneralTab : public SettingsTab
{
public:
GeneralTab(Settings *m_parent, SettingsDialog &m_dialog);
@@ -347,7 +347,7 @@ private:
};
/** Display/store the configuration in the 'nexus' tab of the settings dialogue */
- class NexusTab : SettingsTab
+ class NexusTab : public SettingsTab
{
public:
NexusTab(Settings *m_parent, SettingsDialog &m_dialog);
@@ -365,7 +365,7 @@ private:
};
/** Display/store the configuration in the 'steam' tab of the settings dialogue */
- class SteamTab : SettingsTab
+ class SteamTab : public SettingsTab
{
public:
SteamTab(Settings *m_parent, SettingsDialog &m_dialog);
@@ -378,7 +378,7 @@ private:
};
/** Display/store the configuration in the 'plugins' tab of the settings dialogue */
- class PluginsTab : SettingsTab
+ class PluginsTab : public SettingsTab
{
public:
PluginsTab(Settings *m_parent, SettingsDialog &m_dialog);
@@ -391,7 +391,7 @@ private:
};
/** Display/store the configuration in the 'workarounds' tab of the settings dialogue */
- class WorkaroundsTab : SettingsTab
+ class WorkaroundsTab : public SettingsTab
{
public:
WorkaroundsTab(Settings *m_parent, SettingsDialog &m_dialog);
@@ -420,7 +420,7 @@ private:
static Settings *s_Instance;
- MOBase::IPluginGame *m_GamePlugin;
+ MOBase::IPluginGame const *m_GamePlugin;
QSettings m_Settings;