src/eric7/Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10458
2074b8393649
child 10922
36a90a94765c
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
943 self.__started = True 943 self.__started = True
944 self.__identifyProject() 944 self.__identifyProject()
945 self.__getLogEntries(noEntries=noEntries) 945 self.__getLogEntries(noEntries=noEntries)
946 946
947 @pyqtSlot(int, QProcess.ExitStatus) 947 @pyqtSlot(int, QProcess.ExitStatus)
948 def __procFinished(self, exitCode, exitStatus): 948 def __procFinished(self, _exitCode, _exitStatus):
949 """ 949 """
950 Private slot connected to the finished signal. 950 Private slot connected to the finished signal.
951 951
952 @param exitCode exit code of the process 952 @param _exitCode exit code of the process (unused)
953 @type int 953 @type int
954 @param exitStatus exit status of the process 954 @param _exitStatus exit status of the process (unused)
955 @type QProcess.ExitStatus 955 @type QProcess.ExitStatus
956 """ 956 """
957 self.__processBuffer() 957 self.__processBuffer()
958 self.__finish() 958 self.__finish()
959 959
1806 """ 1806 """
1807 if self.__actionMode() == "find": 1807 if self.__actionMode() == "find":
1808 self.__findItem(self.__findBackwards, interactive=True) 1808 self.__findItem(self.__findBackwards, interactive=True)
1809 1809
1810 @pyqtSlot(bool) 1810 @pyqtSlot(bool)
1811 def on_stopCheckBox_clicked(self, checked): 1811 def on_stopCheckBox_clicked(self, _checked):
1812 """ 1812 """
1813 Private slot called, when the stop on copy/move checkbox is clicked. 1813 Private slot called, when the stop on copy/move checkbox is clicked.
1814 1814
1815 @param checked flag indicating the state of the check box 1815 @param _checked flag indicating the state of the check box (unused)
1816 @type bool 1816 @type bool
1817 """ 1817 """
1818 self.vcs.getPlugin().setPreferences( 1818 self.vcs.getPlugin().setPreferences(
1819 "StopLogOnCopy", self.stopCheckBox.isChecked() 1819 "StopLogOnCopy", self.stopCheckBox.isChecked()
1820 ) 1820 )

eric ide

mercurial