Thu, 12 Aug 2010 14:39:39 +0200
Fixed an issue in the syntax checker dialog.
Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py | file | annotate | diff | comparison | revisions |
--- a/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py Thu Aug 12 10:07:38 2010 +0200 +++ b/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py Thu Aug 12 14:39:39 2010 +0200 @@ -86,7 +86,7 @@ itm.setIcon(0, UI.PixmapCache.getIcon("syntaxError.png")) ## itm.setToolTip(0, file) itm.setData(0, self.filenameRole, file) - itm.setData(0, self.lineRole, line) + itm.setData(0, self.lineRole, int(line)) itm.setData(0, self.errorRole, error) itm.setData(0, self.warningRole, isWarning)