diff -r 542e97d4ecb3 -r 801289962f4e Debugger/DebugServer.py --- a/Debugger/DebugServer.py Mon Oct 14 19:30:36 2013 +0200 +++ b/Debugger/DebugServer.py Mon Oct 14 20:08:19 2013 +0200 @@ -351,8 +351,8 @@ """ if clType is not None and clType in self.getSupportedLanguages(): self.clientType = clType - Preferences.Prefs.settings.setValue('DebugClient/Type', - self.clientType) + Preferences.Prefs.settings.setValue( + 'DebugClient/Type', self.clientType) def startClient(self, unplanned=True, clType=None, forProject=False, runInConsole=False): @@ -1323,7 +1323,8 @@ @param toLine line number in the target file (string) @param toFunction name of the target function (string) """ - self.callTraceInfo.emit(isCall, fromFile, fromLine, fromFunction, + self.callTraceInfo.emit( + isCall, fromFile, fromLine, fromFunction, toFile, toLine, toFunction) def clientUtPrepared(self, result, exceptionType, exceptionValue):