17 QCoreApplication, |
17 QCoreApplication, |
18 QProcessEnvironment, |
18 QProcessEnvironment, |
19 ) |
19 ) |
20 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QLineEdit |
20 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QLineEdit |
21 |
21 |
22 from EricWidgets import EricMessageBox |
22 from eric7.EricWidgets import EricMessageBox |
23 |
23 |
24 from .Ui_GitDialog import Ui_GitDialog |
24 from .Ui_GitDialog import Ui_GitDialog |
25 |
25 |
26 import Preferences |
26 from eric7 import Preferences |
27 from Globals import strToQByteArray |
27 from eric7.Globals import strToQByteArray |
28 |
28 |
29 |
29 |
30 class GitDialog(QDialog, Ui_GitDialog): |
30 class GitDialog(QDialog, Ui_GitDialog): |
31 """ |
31 """ |
32 Class implementing a dialog starting a process and showing its output. |
32 Class implementing a dialog starting a process and showing its output. |