summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authorMikaƫl Capelle <capelle.mikael@gmail.com>2021-01-30 18:21:56 +0100
committerGitHub <noreply@github.com>2021-01-30 18:21:56 +0100
commit3b360162e1d16f0f54e4163a16efe56fb50152c7 (patch)
tree7c4184886251cf91ac0a6ad18d4a6641e6535b07 /src/settings.h
parentf53e5406d4292f484257178ec5733f6ceb116673 (diff)
parent76989e2b8f6dc3cea2c2e90813feb86af2ecad14 (diff)
Merge pull request #1386 from Holt59/update-settings-dialog
Update settings dialog.
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/settings.h b/src/settings.h
index 96290f55..6ddee308 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -20,7 +20,6 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#ifndef SETTINGS_H
#define SETTINGS_H
-#include "loadmechanism.h"
#include "envdump.h"
#include <filterwidget.h>
#include <lootcli/lootcli.h>
@@ -83,26 +82,9 @@ public:
std::optional<QString> selectedProfileName() const;
void setSelectedProfileName(const QString& name);
- // load mechanism type
- //
- LoadMechanism::EMechanism loadMechanismType() const;
- void setLoadMechanism(LoadMechanism::EMechanism m);
-
- // load mechanism object
- //
- const LoadMechanism& loadMechanism() const;
- LoadMechanism& loadMechanism();
-
- // whether the user wants unchecked plugins (esp, esm) to be hidden from
- // the virtual data directory
- //
- bool hideUncheckedPlugins() const;
- void setHideUncheckedPlugins(bool b);
-
private:
QSettings& m_Settings;
const MOBase::IPluginGame* m_GamePlugin;
- LoadMechanism m_LoadMechanism;
};