10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import QTimer, QProcess, pyqtSlot, Qt, QProcessEnvironment |
12 from PyQt6.QtCore import QTimer, QProcess, pyqtSlot, Qt, QProcessEnvironment |
13 from PyQt6.QtWidgets import QLineEdit, QDialog, QDialogButtonBox |
13 from PyQt6.QtWidgets import QLineEdit, QDialog, QDialogButtonBox |
14 |
14 |
15 from EricWidgets import EricMessageBox |
15 from eric7.EricWidgets import EricMessageBox |
16 |
16 |
17 from .Ui_SvnDialog import Ui_SvnDialog |
17 from .Ui_SvnDialog import Ui_SvnDialog |
18 |
18 |
19 import Preferences |
19 from eric7 import Preferences |
20 from Globals import strToQByteArray |
20 from eric7.Globals import strToQByteArray |
21 |
21 |
22 |
22 |
23 class SvnDialog(QDialog, Ui_SvnDialog): |
23 class SvnDialog(QDialog, Ui_SvnDialog): |
24 """ |
24 """ |
25 Class implementing a dialog starting a process and showing its output. |
25 Class implementing a dialog starting a process and showing its output. |