411 @param rev1 first revision number (integer) |
411 @param rev1 first revision number (integer) |
412 @param rev2 second revision number (integer) |
412 @param rev2 second revision number (integer) |
413 """ |
413 """ |
414 if self.diff is None: |
414 if self.diff is None: |
415 from .SvnDiffDialog import SvnDiffDialog |
415 from .SvnDiffDialog import SvnDiffDialog |
416 self.diff = SvnDiffDialog(self.vcs, self) |
416 self.diff = SvnDiffDialog(self.vcs) |
417 self.diff.show() |
417 self.diff.show() |
|
418 self.diff.raise_() |
418 self.diff.start(self.filename, [rev1, rev2]) |
419 self.diff.start(self.filename, [rev1, rev2]) |
419 |
420 |
420 def on_buttonBox_clicked(self, button): |
421 def on_buttonBox_clicked(self, button): |
421 """ |
422 """ |
422 Private slot called by a button of the button box clicked. |
423 Private slot called by a button of the button box clicked. |