This repository has been archived by the owner. It is now read-only.
Permalink
Browse files

#5617 Remove PluginManager from SettingsDialog

  • Loading branch information...
nlyan committed Sep 27, 2016
1 parent 1fceb2b commit 964e6d2f12a92584100a108dd376480781f89c33
Showing with 1 addition and 8 deletions.
  1. +1 −8 src/gui/src/SettingsDialog.cpp
@@ -18,7 +18,6 @@
#include "SettingsDialog.h"
-#include "PluginManager.h"
#include "CoreInterface.h"
#include "SynergyLocale.h"
#include "QSynergyApplication.h"
@@ -61,13 +60,7 @@ SettingsDialog::SettingsDialog(QWidget* parent, AppConfig& config) :
m_pComboElevate->hide();
#endif
- if (!PluginManager::exist(networkSecurity)) {
- m_pGroupNetworkSecurity->setEnabled(false);
- m_pCheckBoxEnableCrypto->setChecked(false);
- }
- else {
- m_pCheckBoxEnableCrypto->setChecked(m_AppConfig.getCryptoEnabled());
- }
+ m_pCheckBoxEnableCrypto->setChecked(m_AppConfig.getCryptoEnabled());
}
void SettingsDialog::accept()

0 comments on commit 964e6d2

Please sign in to comment.