diff -r d1a603a70f83 -r 9becf9ca115c src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py --- a/src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Tue Apr 23 09:29:13 2024 +0200 +++ b/src/eric7/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py Tue Apr 23 11:26:04 2024 +0200 @@ -406,11 +406,11 @@ self.categoriesEdit.setText(categories) @pyqtSlot(str) - def on_onlyShowEdit_textChanged(self, txt): + def on_onlyShowEdit_textChanged(self, _txt): """ Private slot to check the contents of the onlyShowEdit field. - @param txt text of the entry field + @param _txt text of the entry field (unused) @type str """ self.__checkOK() @@ -436,11 +436,11 @@ self.onlyShowEdit.setText(environments) @pyqtSlot(str) - def on_notShowEdit_textChanged(self, txt): + def on_notShowEdit_textChanged(self, _txt): """ Private slot to check the contents of the notShowEdit field. - @param txt text of the entry field + @param _txt text of the entry field (unused) @type str """ self.__checkOK() @@ -466,21 +466,21 @@ self.notShowEdit.setText(environments) @pyqtSlot(str) - def on_typeEdit_textChanged(self, txt): + def on_typeEdit_textChanged(self, _txt): """ Private slot to check, if the typeEdit field is empty. - @param txt text of the entry field + @param _txt text of the entry field (unused) @type str """ self.__checkOK() @pyqtSlot(str) - def on_nameEdit_textChanged(self, txt): + def on_nameEdit_textChanged(self, _txt): """ Private slot to check, if the nameEdit field is empty. - @param txt text of the entry field + @param _txt text of the entry field (unused) @type str """ self.__checkOK()