Permalink
Browse files
#5629 Fix main window AppConfig naming conventions
- Loading branch information...
Showing
with
7 additions
and
7 deletions.
-
+5
−5
src/gui/src/SettingsDialog.cpp
-
+2
−2
src/gui/src/SettingsDialog.h
|
|
@@ -38,7 +38,7 @@ static const char networkSecurity[] = "ns"; |
|
|
SettingsDialog::SettingsDialog(QWidget* parent, AppConfig& config) :
|
|
|
QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint),
|
|
|
Ui::SettingsDialogBase(),
|
|
|
- m_AppConfig(config)
|
|
|
+ m_appConfig(config)
|
|
|
{
|
|
|
setupUi(this);
|
|
|
|
|
|
@@ -63,8 +63,8 @@ SettingsDialog::SettingsDialog(QWidget* parent, AppConfig& config) : |
|
|
m_pComboElevate->hide();
|
|
|
#endif
|
|
|
|
|
|
- m_pCheckBoxEnableCrypto->setChecked(m_AppConfig.getCryptoEnabled());
|
|
|
- m_pCheckBoxEnableCrypto->setEnabled(m_AppConfig.edition() == Pro);
|
|
|
+ m_pCheckBoxEnableCrypto->setChecked(m_appConfig.getCryptoEnabled());
|
|
|
+ m_pCheckBoxEnableCrypto->setEnabled(m_appConfig.edition() == Pro);
|
|
|
}
|
|
|
|
|
|
void SettingsDialog::accept()
|
|
|
@@ -144,8 +144,8 @@ void SettingsDialog::on_m_pComboLanguage_currentIndexChanged(int index) |
|
|
|
|
|
void SettingsDialog::on_m_pCheckBoxEnableCrypto_toggled(bool checked)
|
|
|
{
|
|
|
- m_AppConfig.setCryptoEnabled(checked);
|
|
|
- m_AppConfig.saveSettings();
|
|
|
+ m_appConfig.setCryptoEnabled(checked);
|
|
|
+ m_appConfig.saveSettings();
|
|
|
if (checked) {
|
|
|
SslCertificate sslCertificate;
|
|
|
sslCertificate.generateCertificate();
|
|
|
|
|
|
@@ -40,10 +40,10 @@ class SettingsDialog : public QDialog, public Ui::SettingsDialogBase |
|
|
void accept();
|
|
|
void reject();
|
|
|
void changeEvent(QEvent* event);
|
|
|
- AppConfig& appConfig() { return m_AppConfig; }
|
|
|
+ AppConfig& appConfig() { return m_appConfig; }
|
|
|
|
|
|
private:
|
|
|
- AppConfig& m_AppConfig;
|
|
|
+ AppConfig& m_appConfig;
|
|
|
SynergyLocale m_Locale;
|
|
|
CoreInterface m_CoreInterface;
|
|
|
|
|
|
|
0 comments on commit
002bceb