103 """ |
103 """ |
104 Private slot to show the call stack of the program being debugged. |
104 Private slot to show the call stack of the program being debugged. |
105 |
105 |
106 @param stack list of tuples with call stack data (file name, |
106 @param stack list of tuples with call stack data (file name, |
107 line number, function name, formatted argument/values list) |
107 line number, function name, formatted argument/values list) |
|
108 @type list of tuples of (str, str, str, str) |
108 """ |
109 """ |
109 self.clear() |
110 self.clear() |
110 for fname, fline, ffunc, fargs in stack: |
111 for fname, fline, ffunc, fargs in stack: |
111 if self.__projectMode: |
112 if self.__projectMode: |
112 dfname = self.__project.getRelativePath(fname) |
113 dfname = self.__project.getRelativePath(fname) |