diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsGit/GitBlameDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitBlameDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitBlameDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -36,7 +36,9 @@ Constructor @param vcs reference to the vcs object - @param parent reference to the parent widget (QWidget) + @type Git + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -70,7 +72,8 @@ """ Protected slot implementing a close event handler. - @param e close event (QCloseEvent) + @param e close event + @type QCloseEvent """ if ( self.process is not None @@ -162,7 +165,8 @@ """ Private slot called by a button of the button box clicked. - @param button button that was clicked (QAbstractButton) + @param button button that was clicked + @type QAbstractButton """ if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): self.close() @@ -174,8 +178,10 @@ """ Private slot connected to the finished signal. - @param exitCode exit code of the process (integer) - @param exitStatus exit status of the process (QProcess.ExitStatus) + @param exitCode exit code of the process + @type int + @param exitStatus exit status of the process + @type QProcess.ExitStatus """ self.__finish() @@ -284,7 +290,8 @@ """ Private slot to handle the password checkbox toggled. - @param checked flag indicating the status of the check box (boolean) + @param checked flag indicating the status of the check box + @type bool """ if checked: self.input.setEchoMode(QLineEdit.EchoMode.Password) @@ -295,7 +302,8 @@ """ Protected slot to handle a key press event. - @param evt the key press event (QKeyEvent) + @param evt the key press event + @type QKeyEvent """ if self.intercept: self.intercept = False