eric6/Debugger/CallTraceViewer.py

changeset 7251
bc5b1b00560a
parent 7229
53054eb5b15a
child 7360
9190402e4505
equal deleted inserted replaced
7250:d8bdc55aee1a 7251:bc5b1b00560a
243 """ 243 """
244 if isCall: 244 if isCall:
245 icon = UI.PixmapCache.getIcon("forward.png") 245 icon = UI.PixmapCache.getIcon("forward.png")
246 else: 246 else:
247 icon = UI.PixmapCache.getIcon("back.png") 247 icon = UI.PixmapCache.getIcon("back.png")
248 parentItem = \ 248 parentItem = (
249 self.__callStack[-1] if self.__callStack else self.callTrace 249 self.__callStack[-1] if self.__callStack else self.callTrace)
250 250
251 if self.__projectMode: 251 if self.__projectMode:
252 fromFile = self.__project.getRelativePath(fromFile) 252 fromFile = self.__project.getRelativePath(fromFile)
253 toFile = self.__project.getRelativePath(toFile) 253 toFile = self.__project.getRelativePath(toFile)
254 254

eric ide

mercurial