10 from PyQt6.QtCore import Qt, QCoreApplication |
10 from PyQt6.QtCore import Qt, QCoreApplication |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
12 |
12 |
13 from .Ui_HgDialog import Ui_HgDialog |
13 from .Ui_HgDialog import Ui_HgDialog |
14 |
14 |
15 import Preferences |
15 from eric7 import Preferences, Utilities |
16 import Utilities |
|
17 |
16 |
18 |
17 |
19 class HgDialog(QDialog, Ui_HgDialog): |
18 class HgDialog(QDialog, Ui_HgDialog): |
20 """ |
19 """ |
21 Class implementing a dialog starting a process and showing its output. |
20 Class implementing a dialog starting a process and showing its output. |