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 |