diff -r 9986ec0e559a -r 10516539f238 Debugger/BreakPointModel.py --- a/Debugger/BreakPointModel.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Debugger/BreakPointModel.py Fri Oct 18 23:00:41 2013 +0200 @@ -22,7 +22,7 @@ """ Constructor - @param reference to the parent widget (QObject) + @param parent reference to the parent widget (QObject) """ super(BreakPointModel, self).__init__(parent) @@ -48,6 +48,7 @@ """ Public method to get the current column count. + @param parent reference to parent index (QModelIndex) @return column count (integer) """ return len(self.header) @@ -56,6 +57,7 @@ """ Public method to get the current row count. + @param parent reference to parent index (QModelIndex) @return row count (integer) """ # we do not have a tree, parent should always be invalid @@ -178,7 +180,7 @@ else: return False - ############################################################################ + ########################################################################### def addBreakPoint(self, fn, line, properties): """ @@ -283,10 +285,11 @@ def getBreakPointIndex(self, fn, lineno): """ - Public method to get the index of a breakpoint given by filename and line number. + Public method to get the index of a breakpoint given by filename and + line number. @param fn filename of the breakpoint (string) - @param line line number of the breakpoint (integer) + @param lineno line number of the breakpoint (integer) @return index (QModelIndex) """ for row in range(len(self.breakpoints)):