eric6/Debugger/CallStackViewer.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
child 8257
28146736bbfc
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
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)

eric ide

mercurial