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

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py	Mon Apr 22 15:15:36 2024 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py	Mon Apr 22 18:23:20 2024 +0200
@@ -363,13 +363,13 @@
         self.__getLogEntries()
 
     @pyqtSlot(int, QProcess.ExitStatus)
-    def __procFinished(self, exitCode, exitStatus):
+    def __procFinished(self, _exitCode, _exitStatus):
         """
         Private slot connected to the finished signal.
 
-        @param exitCode exit code of the process
+        @param _exitCode exit code of the process (unused)
         @type int
-        @param exitStatus exit status of the process
+        @param _exitStatus exit status of the process (unused)
         @type QProcess.ExitStatus
         """
         self.__processBuffer()
@@ -650,41 +650,41 @@
         self.__diffRevisions(min(rev1, rev2), max(rev1, rev2))
 
     @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
         @type str
         """
         self.__filterLogs()
@@ -729,11 +729,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 checked state
+        @param _checked flag indicating the checked state (unused)
         @type bool
         """
         self.vcs.getPlugin().setPreferences(

eric ide

mercurial