CxFreeze/CxfreezeExecDialog.py

branch
eric7
changeset 146
32c4e3d4465c
parent 145
c423d46df27e
child 147
908186813616
equal deleted inserted replaced
145:c423d46df27e 146:32c4e3d4465c
31 31
32 def __init__(self, cmdname, parent=None): 32 def __init__(self, cmdname, parent=None):
33 """ 33 """
34 Constructor 34 Constructor
35 35
36 @param cmdname name of the packager (string) 36 @param cmdname name of the packager
37 @param parent parent widget of this dialog (QWidget) 37 @type str
38 @param parent parent widget of this dialog
39 @type QWidget
38 """ 40 """
39 super().__init__(parent) 41 super().__init__(parent)
40 self.setupUi(self) 42 self.setupUi(self)
41 43
42 self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setEnabled(False) 44 self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setEnabled(False)
216 def __init__(self, main): 218 def __init__(self, main):
217 """ 219 """
218 Constructor 220 Constructor
219 221
220 @param main self-object of the caller 222 @param main self-object of the caller
223 @type CxfreezeExecDialog
221 """ 224 """
222 super().__init__() 225 super().__init__()
223 226
224 self.ppath = main.ppath 227 self.ppath = main.ppath
225 self.additionalFiles = main.additionalFiles 228 self.additionalFiles = main.additionalFiles

eric ide

mercurial