src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py	Mon Apr 22 15:15:36 2024 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py	Mon Apr 22 18:23:20 2024 +0200
@@ -539,41 +539,41 @@
         EricMessageBox.critical(self, self.tr("Subversion Error"), msg)
 
     @pyqtSlot(QDate)
-    def on_fromDate_dateChanged(self, date):
+    def on_fromDate_dateChanged(self, _date):
         """
         Private slot called, when the from date changes.
 
-        @param date new date
+        @param _date new date (unused)
         @type QDate
         """
         self.__filterLogs()
 
     @pyqtSlot(QDate)
-    def on_toDate_dateChanged(self, date):
+    def on_toDate_dateChanged(self, _date):
         """
         Private slot called, when the from date changes.
 
-        @param date new date
+        @param _date new date (unused)
         @type QDate
         """
         self.__filterLogs()
 
     @pyqtSlot(int)
-    def on_fieldCombo_activated(self, index):
+    def on_fieldCombo_activated(self, _index):
         """
         Private slot called, when a new filter field is selected.
 
-        @param index index of the selected entry
+        @param _index index of the selected entry (unused)
         @type int
         """
         self.__filterLogs()
 
     @pyqtSlot(str)
-    def on_rxEdit_textChanged(self, txt):
+    def on_rxEdit_textChanged(self, _txt):
         """
         Private slot called, when a filter expression is entered.
 
-        @param txt filter expression
+        @param _txt filter expression (unused)
         @type str
         """
         self.__filterLogs()
@@ -618,11 +618,11 @@
                         self.filesTree.clear()
 
     @pyqtSlot(bool)
-    def on_stopCheckBox_clicked(self, checked):
+    def on_stopCheckBox_clicked(self, _checked):
         """
         Private slot called, when the stop on copy/move checkbox is clicked.
 
-        @param checked flag indicating the check box state
+        @param _checked flag indicating the check box state (unused)
         @type bool
         """
         self.vcs.getPlugin().setPreferences(

eric ide

mercurial