13 |
13 |
14 from PyQt6.QtCore import QTimer, QProcess, pyqtSlot, Qt |
14 from PyQt6.QtCore import QTimer, QProcess, pyqtSlot, Qt |
15 from PyQt6.QtGui import QTextCursor |
15 from PyQt6.QtGui import QTextCursor |
16 from PyQt6.QtWidgets import QWidget, QLineEdit, QDialogButtonBox |
16 from PyQt6.QtWidgets import QWidget, QLineEdit, QDialogButtonBox |
17 |
17 |
18 from EricWidgets.EricApplication import ericApp |
18 from eric7.EricWidgets.EricApplication import ericApp |
19 from EricWidgets import EricMessageBox, EricFileDialog |
19 from eric7.EricWidgets import EricMessageBox, EricFileDialog |
20 |
20 |
21 from .Ui_SvnDiffDialog import Ui_SvnDiffDialog |
21 from .Ui_SvnDiffDialog import Ui_SvnDiffDialog |
22 from .SvnDiffHighlighter import SvnDiffHighlighter |
22 from .SvnDiffHighlighter import SvnDiffHighlighter |
23 |
23 |
24 import Preferences |
24 from eric7 import Preferences |
25 from Globals import strToQByteArray |
25 from eric7.Globals import strToQByteArray |
26 |
26 |
27 |
27 |
28 class SvnDiffDialog(QWidget, Ui_SvnDiffDialog): |
28 class SvnDiffDialog(QWidget, Ui_SvnDiffDialog): |
29 """ |
29 """ |
30 Class implementing a dialog to show the output of the svn diff command |
30 Class implementing a dialog to show the output of the svn diff command |