--- a/src/eric7/HexEdit/HexEditMainWindow.py Wed Dec 20 11:06:38 2023 +0100 +++ b/src/eric7/HexEdit/HexEditMainWindow.py Wed Dec 20 14:58:58 2023 +0100 @@ -54,11 +54,15 @@ """ Constructor - @param fileName name of a file to load on startup (string) - @param parent parent widget of this window (QWidget) + @param fileName name of a file to load on startup + @type str + @param parent parent widget of this window + @type QWidget @param fromEric flag indicating whether it was called from within - eric (boolean) - @param project reference to the project object (Project) + eric + @type bool + @param project reference to the project object + @type Project """ super().__init__(parent) self.setObjectName("eric7_hex_editor") @@ -1552,7 +1556,8 @@ """ Private method to open a file from the list of recently opened files. - @param act reference to the action that triggered (QAction) + @param act reference to the action that triggered + @type QAction """ fileName = act.data() if fileName and self.__maybeSave(): @@ -1591,6 +1596,7 @@ Private method to add a file name to the list of recently opened files. @param fileName name of the file to be added + @type str """ if fileName: for recent in self.__recent[:]: