12 from PyQt6.QtCore import Qt, QCoreApplication |
12 from PyQt6.QtCore import Qt, QCoreApplication |
13 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QHeaderView, QTreeWidgetItem |
13 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QHeaderView, QTreeWidgetItem |
14 |
14 |
15 from .Ui_HgAnnotateDialog import Ui_HgAnnotateDialog |
15 from .Ui_HgAnnotateDialog import Ui_HgAnnotateDialog |
16 |
16 |
17 import Preferences |
17 from eric7 import Preferences |
18 |
18 |
19 |
19 |
20 class HgAnnotateDialog(QDialog, Ui_HgAnnotateDialog): |
20 class HgAnnotateDialog(QDialog, Ui_HgAnnotateDialog): |
21 """ |
21 """ |
22 Class implementing a dialog to show the output of the hg annotate command. |
22 Class implementing a dialog to show the output of the hg annotate command. |