summaryrefslogtreecommitdiff
path: root/src/settingsdialogworkarounds.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-07-20 12:03:05 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-08-02 03:06:59 -0400
commitee43c405987d646fd15ad17cf1f1ffe2db45bc51 (patch)
tree534a5c771e47e6e1bb1d695ac0e4f6675ccbaecc /src/settingsdialogworkarounds.cpp
parenta05862aaa13b028e2f250347daa7a2e0f64c2380 (diff)
removed obsolete load mechanisms
Diffstat (limited to 'src/settingsdialogworkarounds.cpp')
-rw-r--r--src/settingsdialogworkarounds.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/settingsdialogworkarounds.cpp b/src/settingsdialogworkarounds.cpp
index 4cca5fd4..9ac46ac1 100644
--- a/src/settingsdialogworkarounds.cpp
+++ b/src/settingsdialogworkarounds.cpp
@@ -18,20 +18,6 @@ WorkaroundsSettingsTab::WorkaroundsSettingsTab(Settings *m_parent, SettingsDialo
}
}
- if (m_parent->loadMechanism().isScriptExtenderSupported()) {
- ui->mechanismBox->addItem(QObject::tr("Script Extender"), LoadMechanism::LOAD_SCRIPTEXTENDER);
- if (mechanismID == LoadMechanism::LOAD_SCRIPTEXTENDER) {
- index = ui->mechanismBox->count() - 1;
- }
- }
-
- if (m_parent->loadMechanism().isProxyDLLSupported()) {
- ui->mechanismBox->addItem(QObject::tr("Proxy DLL"), LoadMechanism::LOAD_PROXYDLL);
- if (mechanismID == LoadMechanism::LOAD_PROXYDLL) {
- index = ui->mechanismBox->count() - 1;
- }
- }
-
ui->mechanismBox->setCurrentIndex(index);
ui->hideUncheckedBox->setChecked(m_parent->hideUncheckedPlugins());