eric6/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
child 8306
2bfd53096b5f
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
36 36
37 @param project reference to the project object (Project.Project) 37 @param project reference to the project object (Project.Project)
38 @param parms parameters to set in the dialog 38 @param parms parameters to set in the dialog
39 @param parent parent widget of this dialog 39 @param parent parent widget of this dialog
40 """ 40 """
41 super(EricdocConfigDialog, self).__init__(parent) 41 super().__init__(parent)
42 self.setupUi(self) 42 self.setupUi(self)
43 43
44 self.outputDirPicker.setMode(E5PathPickerModes.DirectoryMode) 44 self.outputDirPicker.setMode(E5PathPickerModes.DirectoryMode)
45 self.outputDirPicker.setDefaultDirectory(project.getProjectPath()) 45 self.outputDirPicker.setDefaultDirectory(project.getProjectPath())
46 46
575 self.parameters['qtHelpCreateCollection'] = ( 575 self.parameters['qtHelpCreateCollection'] = (
576 self.qtHelpGenerateCollectionCheckBox.isChecked() 576 self.qtHelpGenerateCollectionCheckBox.isChecked()
577 ) 577 )
578 578
579 # call the accept slot of the base class 579 # call the accept slot of the base class
580 super(EricdocConfigDialog, self).accept() 580 super().accept()

eric ide

mercurial