diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-11-12 20:47:12 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-11-12 20:47:20 +0100 |
| commit | 15059907c9bd0061f502c64457fce20c7e60a07f (patch) | |
| tree | 77c6dfed6e514a870244802983095b044d0fcd73 /src/settingsdialogplugins.cpp | |
| parent | 4fa44fe37e9b2f9837f7fcbaf9361f9675669782 (diff) | |
Proper handling of proxied plugins that implement multiple interfaces.
Diffstat (limited to 'src/settingsdialogplugins.cpp')
| -rw-r--r-- | src/settingsdialogplugins.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/settingsdialogplugins.cpp b/src/settingsdialogplugins.cpp index 556cadcb..ba690d41 100644 --- a/src/settingsdialogplugins.cpp +++ b/src/settingsdialogplugins.cpp @@ -242,7 +242,6 @@ void PluginsSettingsTab::on_checkboxEnabled_clicked(bool checked) for (auto& p : proxied) { pluginNames.append(p->localizedName()); } - pluginNames.removeDuplicates(); pluginNames.sort(); QString message = QObject::tr( "<p>Disabling this plugin will prevent the following plugins from working:</p><ul>%1</ul>" @@ -264,7 +263,6 @@ void PluginsSettingsTab::on_checkboxEnabled_clicked(bool checked) for (auto& p : requiredFor) { pluginNames.append(p->localizedName()); } - pluginNames.removeDuplicates(); pluginNames.sort(); QString message = QObject::tr( "<p>Disabling this plugin will also disable the following plugins:</p><ul>%1</ul><p>Do you want to continue?</p>") |
