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

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
539 self.__finish() 539 self.__finish()
540 elif button == self.refreshButton: 540 elif button == self.refreshButton:
541 self.on_refreshButton_clicked() 541 self.on_refreshButton_clicked()
542 542
543 @pyqtSlot(int, QProcess.ExitStatus) 543 @pyqtSlot(int, QProcess.ExitStatus)
544 def __procFinished(self, exitCode, exitStatus): 544 def __procFinished(self, _exitCode, _exitStatus):
545 """ 545 """
546 Private slot connected to the finished signal. 546 Private slot connected to the finished signal.
547 547
548 @param exitCode exit code of the process 548 @param _exitCode exit code of the process (unused)
549 @type int 549 @type int
550 @param exitStatus exit status of the process 550 @param _exitStatus exit status of the process (unused)
551 @type QProcess.ExitStatus 551 @type QProcess.ExitStatus
552 """ 552 """
553 self.__finish() 553 self.__finish()
554 554
555 def __readStdout(self): 555 def __readStdout(self):
729 for topIndex in range(self.statusList.topLevelItemCount()): 729 for topIndex in range(self.statusList.topLevelItemCount()):
730 topItem = self.statusList.topLevelItem(topIndex) 730 topItem = self.statusList.topLevelItem(topIndex)
731 topItem.setHidden(topItem.text(self.__statusColumn) != txt) 731 topItem.setHidden(topItem.text(self.__statusColumn) != txt)
732 732
733 @pyqtSlot(QTreeWidgetItem, int) 733 @pyqtSlot(QTreeWidgetItem, int)
734 def on_statusList_itemChanged(self, item, column): 734 def on_statusList_itemChanged(self, _item, column):
735 """ 735 """
736 Private slot to act upon item changes. 736 Private slot to act upon item changes.
737 737
738 @param item reference to the changed item 738 @param _item reference to the changed item (unused)
739 @type QTreeWidgetItem 739 @type QTreeWidgetItem
740 @param column index of column that changed 740 @param column index of column that changed
741 @type int 741 @type int
742 """ 742 """
743 if column == self.__toBeCommittedColumn: 743 if column == self.__toBeCommittedColumn:

eric ide

mercurial