Debugger/DebugViewer.py

changeset 481
ad71812ba395
parent 476
121633976eca
child 482
4650a72c307a
equal deleted inserted replaced
480:793552e39173 481:ad71812ba395
230 230
231 self.currPage = None 231 self.currPage = None
232 self.currentStack = None 232 self.currentStack = None
233 self.framenr = 0 233 self.framenr = 0
234 234
235 self.connect(self.debugServer, SIGNAL('clientStack'), self.handleClientStack) 235 self.debugServer.clientStack.connect(self.handleClientStack)
236 236
237 def setDebugger(self, debugUI): 237 def setDebugger(self, debugUI):
238 """ 238 """
239 Public method to set a reference to the Debug UI. 239 Public method to set a reference to the Debug UI.
240 240
241 @param debugUI reference to the DebugUI objectTrees 241 @param debugUI reference to the DebugUI objectTrees
242 """ 242 """
243 self.debugUI = debugUI 243 self.debugUI = debugUI
244 self.connect(self.debugUI, SIGNAL('clientStack'), self.handleClientStack) 244 self.debugUI.clientStack.connect(self.handleClientStack)
245 245
246 def handleResetUI(self): 246 def handleResetUI(self):
247 """ 247 """
248 Public method to reset the SBVviewer. 248 Public method to reset the SBVviewer.
249 """ 249 """

eric ide

mercurial