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) |