4950 """ |
4950 """ |
4951 Public slot to set the preferences. |
4951 Public slot to set the preferences. |
4952 |
4952 |
4953 @param pageName name of the configuration page to show (string) |
4953 @param pageName name of the configuration page to show (string) |
4954 """ |
4954 """ |
4955 dlg = ConfigurationDialog(self, 'Configuration') ##, True) |
4955 dlg = ConfigurationDialog(self, 'Configuration') |
4956 dlg.preferencesChanged.connect(self.__preferencesChanged) |
4956 dlg.preferencesChanged.connect(self.__preferencesChanged) |
4957 dlg.masterPasswordChanged.connect(self.__masterPasswordChanged) |
4957 dlg.masterPasswordChanged.connect(self.__masterPasswordChanged) |
4958 dlg.show() |
4958 dlg.show() |
4959 if pageName is not None: |
4959 if pageName is not None: |
4960 dlg.showConfigurationPageByName(pageName) |
4960 dlg.showConfigurationPageByName(pageName) |