--- a/src/eric7/Debugger/ExceptionLogger.py Sat Dec 16 17:52:02 2023 +0100 +++ b/src/eric7/Debugger/ExceptionLogger.py Sun Dec 17 17:15:19 2023 +0100 @@ -31,7 +31,8 @@ """ Constructor - @param parent the parent widget of this widget + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setObjectName("ExceptionLogger") @@ -75,15 +76,17 @@ """ Private slot to handle the double click of an item. - @param itm the item that was double clicked(QTreeWidgetItem), ignored + @param itm reference to the item that was double clicked (ignored) + @type QTreeWidgetItem """ self.__openSource() def __showContextMenu(self, coord): """ - Private slot to show the context menu of the listview. + Private slot to show the context menu of the view. - @param coord the global coordinates of the mouse pointer (QPoint) + @param coord global coordinates of the mouse pointer + @type QPoint """ itm = self.itemAt(coord) coord = self.mapToGlobal(coord)