--- a/Debugger/ExceptionLogger.py Mon Aug 09 18:31:43 2010 +0200 +++ b/Debugger/ExceptionLogger.py Mon Aug 09 19:57:09 2010 +0200 @@ -22,6 +22,8 @@ @signal sourceFile(string, int) emitted to open a source file at a line """ + sourceFile = pyqtSignal(str, int) + def __init__(self, parent=None): """ Constructor @@ -127,7 +129,7 @@ entry = itm.text(0) entryList = entry.split(",") try: - self.emit(SIGNAL('sourceFile'), entryList[0], int(entryList[1])) + self.sourceFile.emit(entryList[0], int(entryList[1])) except (IndexError, ValueError): pass