diff -r c712d09cc839 -r f6881d10e995 src/eric7/WebBrowser/History/HistoryDialog.py --- a/src/eric7/WebBrowser/History/HistoryDialog.py Fri Dec 22 13:57:47 2023 +0100 +++ b/src/eric7/WebBrowser/History/HistoryDialog.py Fri Dec 22 17:24:07 2023 +0100 @@ -41,8 +41,10 @@ """ Constructor - @param parent reference to the parent widget (QWidget - @param manager reference to the history manager object (HistoryManager) + @param parent reference to the parent widget + @type QWidget + @param manager reference to the history manager object + @type HistoryManager """ super().__init__(parent) self.setupUi(self) @@ -87,7 +89,8 @@ """ Private slot to handle the context menu request for the bookmarks tree. - @param pos position the context menu was requested (QPoint) + @param pos position the context menu was requested + @type QPoint """ menu = QMenu() idx = self.historyTree.indexAt(pos) @@ -120,7 +123,8 @@ """ Private slot to handle the activation of an entry. - @param idx reference to the entry index (QModelIndex) + @param idx reference to the entry index + @type QModelIndex """ if QApplication.keyboardModifiers() & Qt.KeyboardModifier.ControlModifier: self.__openHistoryInNewTab() @@ -175,7 +179,6 @@ @param privateWindow flag indicating to open the bookmark in a new private window @type bool - (boolean) """ idx = self.historyTree.currentIndex() if newTab: