diff -r 17c01303a239 -r 67064c71df21 Preferences/ConfigurationPages/SecurityPage.py --- a/Preferences/ConfigurationPages/SecurityPage.py Tue Oct 15 19:13:32 2013 +0200 +++ b/Preferences/ConfigurationPages/SecurityPage.py Wed Oct 16 15:16:54 2013 +0200 @@ -54,12 +54,15 @@ """ Public slot to save the Help Viewers configuration. """ - Preferences.setUser("SavePasswords", + Preferences.setUser( + "SavePasswords", self.savePasswordsCheckBox.isChecked()) - Preferences.setUser("UseMasterPassword", + Preferences.setUser( + "UseMasterPassword", self.masterPasswordCheckBox.isChecked()) if self.dnsPrefetchCheckBox.isEnabled(): - Preferences.setHelp("DnsPrefetchEnabled", + Preferences.setHelp( + "DnsPrefetchEnabled", self.dnsPrefetchCheckBox.isChecked()) if self.__oldUseMasterPassword != \ @@ -77,7 +80,8 @@ from .MasterPasswordEntryDialog import MasterPasswordEntryDialog dlg = MasterPasswordEntryDialog("", self) if dlg.exec_() == QDialog.Accepted: - Preferences.setUser("MasterPassword", + Preferences.setUser( + "MasterPassword", dlg.getMasterPassword()) self.masterPasswordButton.setEnabled(True) self.__newPassword = dlg.getMasterPassword() @@ -96,7 +100,8 @@ dlg = MasterPasswordEntryDialog( Preferences.getUser("MasterPassword"), self) if dlg.exec_() == QDialog.Accepted: - Preferences.setUser("MasterPassword", + Preferences.setUser( + "MasterPassword", dlg.getMasterPassword()) if self.__oldUseMasterPassword != \