796 self.vcs.svnSbsDiff(fn) |
796 self.vcs.svnSbsDiff(fn) |
797 |
797 |
798 def __SVNSbsExtendedDiff(self): |
798 def __SVNSbsExtendedDiff(self): |
799 """ |
799 """ |
800 Private slot called by the context menu to show the difference of a |
800 Private slot called by the context menu to show the difference of a |
801 file to the repository side-by-side allowing the selection of |
801 file to the repository side-by-side. |
802 revisions to compare. |
802 |
|
803 It allows the selection of revisions to compare. |
803 """ |
804 """ |
804 itm = self.browser.currentItem() |
805 itm = self.browser.currentItem() |
805 fn = itm.fileName() |
806 fn = itm.fileName() |
806 self.vcs.svnSbsDiff(fn, extended=True) |
807 self.vcs.svnSbsDiff(fn, extended=True) |
807 |
808 |