1130:3e9f0330f833 | 1131:7781e396c903 |
---|---|
29 """ | 29 """ |
30 Constructor | 30 Constructor |
31 | 31 |
32 @param parent reference to the parent widget (QWidget) | 32 @param parent reference to the parent widget (QWidget) |
33 """ | 33 """ |
34 QWidget.__init__(self, parent) | 34 super().__init__(parent) |
35 | 35 |
36 layout = QVBoxLayout(self) | 36 layout = QVBoxLayout(self) |
37 layout.setMargin(0) | 37 layout.setMargin(0) |
38 | 38 |
39 self.__connectionTree = QTreeWidget(self) | 39 self.__connectionTree = QTreeWidget(self) |