19 |
19 |
20 def __init__(self, parent=None, name=None): |
20 def __init__(self, parent=None, name=None): |
21 """ |
21 """ |
22 Constructor |
22 Constructor |
23 |
23 |
24 @param parent parent widget of this dialog (QWidget) |
24 @param parent parent widget of this dialog |
25 @param name name of this dialog (string) |
25 @type QWidget |
|
26 @param name name of this dialog |
|
27 @type str |
26 """ |
28 """ |
27 super().__init__(parent) |
29 super().__init__(parent) |
28 if name: |
30 if name: |
29 self.setObjectName(name) |
31 self.setObjectName(name) |
30 self.setupUi(self) |
32 self.setupUi(self) |