diff options
| author | TanninOne <seppleviathan@gmx.de> | 2015-12-06 15:10:45 +0100 |
|---|---|---|
| committer | TanninOne <seppleviathan@gmx.de> | 2015-12-06 15:10:45 +0100 |
| commit | 865c75a499fe2319ed07e36d8d5d987032058882 (patch) | |
| tree | 4fc3a4f2c56a41d750baab84c392eec09fe6f75f /src/settings.h | |
| parent | e31cf3f2fd99073d22fdddfdb106a59858e14299 (diff) | |
| parent | eca56079d5625c3ddc908d5e8fc9550ce298b1af (diff) | |
Merge branch 'ThosRTanner-master'
Diffstat (limited to 'src/settings.h')
| -rw-r--r-- | src/settings.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/settings.h b/src/settings.h index b6f25a6d..1ee16e76 100644 --- a/src/settings.h +++ b/src/settings.h @@ -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); |
