Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1434
69c3d77a8dd6
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
34 34
35 @param project reference to the project object (Project.Project) 35 @param project reference to the project object (Project.Project)
36 @param parms parameters to set in the dialog 36 @param parms parameters to set in the dialog
37 @param parent parent widget of this dialog 37 @param parent parent widget of this dialog
38 """ 38 """
39 QDialog.__init__(self, parent) 39 super().__init__(parent)
40 self.setupUi(self) 40 self.setupUi(self)
41 41
42 self.__okButton = self.buttonBox.button(QDialogButtonBox.Ok) 42 self.__okButton = self.buttonBox.button(QDialogButtonBox.Ok)
43 43
44 self.__initializeDefaults() 44 self.__initializeDefaults()
525 self.parameters['qtHelpTitle'] = self.qtHelpTitleEdit.text() 525 self.parameters['qtHelpTitle'] = self.qtHelpTitleEdit.text()
526 self.parameters['qtHelpCreateCollection'] = \ 526 self.parameters['qtHelpCreateCollection'] = \
527 self.qtHelpGenerateCollectionCheckBox.isChecked() 527 self.qtHelpGenerateCollectionCheckBox.isChecked()
528 528
529 # call the accept slot of the base class 529 # call the accept slot of the base class
530 QDialog.accept(self) 530 super().accept()

eric ide

mercurial