13 from PyQt4.QtGui import QWidget, QLineEdit, QApplication, QTextCursor, QDialogButtonBox |
13 from PyQt4.QtGui import QWidget, QLineEdit, QApplication, QTextCursor, QDialogButtonBox |
14 |
14 |
15 from E5Gui import E5MessageBox |
15 from E5Gui import E5MessageBox |
16 |
16 |
17 from .Ui_SvnLogDialog import Ui_SvnLogDialog |
17 from .Ui_SvnLogDialog import Ui_SvnLogDialog |
18 from .SvnDiffDialog import SvnDiffDialog |
|
19 |
18 |
20 import Utilities |
19 import Utilities |
21 import Preferences |
20 import Preferences |
22 |
21 |
23 |
22 |
266 if v1 == "" or v2 == "": |
265 if v1 == "" or v2 == "": |
267 return |
266 return |
268 self.contents.scrollToAnchor(ver) |
267 self.contents.scrollToAnchor(ver) |
269 |
268 |
270 if self.diff is None: |
269 if self.diff is None: |
|
270 from .SvnDiffDialog import SvnDiffDialog |
271 self.diff = SvnDiffDialog(self.vcs) |
271 self.diff = SvnDiffDialog(self.vcs) |
272 self.diff.show() |
272 self.diff.show() |
273 self.diff.start(filename, [v1, v2]) |
273 self.diff.start(filename, [v1, v2]) |
274 |
274 |
275 def on_passwordCheckBox_toggled(self, isOn): |
275 def on_passwordCheckBox_toggled(self, isOn): |