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 """ |