eric7/VCS/ProjectHelper.py

branch
eric7
changeset 8468
57ed532d4cde
parent 8358
144a6b854f70
child 8761
f05818ae6431
equal deleted inserted replaced
8467:bccf0a3fa67c 8468:57ed532d4cde
542 codlg = VcsCommandOptionsDialog(self.vcs) 542 codlg = VcsCommandOptionsDialog(self.vcs)
543 if codlg.exec() == QDialog.DialogCode.Accepted: 543 if codlg.exec() == QDialog.DialogCode.Accepted:
544 self.vcs.vcsSetOptions(codlg.getOptions()) 544 self.vcs.vcsSetOptions(codlg.getOptions())
545 self.project.setDirty(True) 545 self.project.setDirty(True)
546 546
547 def _vcsLog(self):
548 """
549 Protected slot used to show the log of the local project.
550 """
551 # kept for backward compatibility for plug-ins
552 self._vcsLogBrowser()
553
554 def _vcsLogBrowser(self): 547 def _vcsLogBrowser(self):
555 """ 548 """
556 Protected slot used to show the log of the local project with a 549 Protected slot used to show the log of the local project with a
557 log browser dialog. 550 log browser dialog.
558 """ 551 """

eric ide

mercurial