--- a/src/eric7/Debugger/VariablesFilterDialog.py Sat Dec 16 17:52:02 2023 +0100 +++ b/src/eric7/Debugger/VariablesFilterDialog.py Sun Dec 17 17:15:19 2023 +0100 @@ -35,9 +35,12 @@ """ Constructor - @param parent parent widget of this dialog (QWidget) - @param name name of this dialog (string) - @param modal flag to indicate a modal dialog (boolean) + @param parent reference to the parent widget + @type QWidget + @param name name of this dialog + @type str + @param modal flag to indicate a modal dialog + @type bool """ super().__init__(parent) if name: @@ -118,7 +121,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.__defaultButton: Preferences.setVarFilters(self.getSelection())