38 @param debugServer reference to the debug server object |
38 @param debugServer reference to the debug server object |
39 @type DebugServer |
39 @type DebugServer |
40 @param parent reference to the parent widget |
40 @param parent reference to the parent widget |
41 @type QWidget |
41 @type QWidget |
42 """ |
42 """ |
43 super(CallStackViewer, self).__init__(parent) |
43 super().__init__(parent) |
44 |
44 |
45 self.__layout = QVBoxLayout(self) |
45 self.__layout = QVBoxLayout(self) |
46 self.setLayout(self.__layout) |
46 self.setLayout(self.__layout) |
47 self.__debuggerLabel = QLabel(self) |
47 self.__debuggerLabel = QLabel(self) |
48 self.__layout.addWidget(self.__debuggerLabel) |
48 self.__layout.addWidget(self.__debuggerLabel) |