1130:3e9f0330f833 | 1131:7781e396c903 |
---|---|
20 """ | 20 """ |
21 Constructor | 21 Constructor |
22 | 22 |
23 @param parent reference to the parent object (QWidget) | 23 @param parent reference to the parent object (QWidget) |
24 """ | 24 """ |
25 QDialog.__init__(self, parent) | 25 super().__init__(parent) |
26 self.setupUi(self) | 26 self.setupUi(self) |
27 | 27 |
28 def setData(self, name, value): | 28 def setData(self, name, value): |
29 """ | 29 """ |
30 Public method to set the data to display. | 30 Public method to set the data to display. |