7 Module implementing a dialog to show some patch file statistics. |
7 Module implementing a dialog to show some patch file statistics. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import Qt, QProcess |
12 from PyQt6.QtCore import QProcess, Qt |
13 from PyQt6.QtWidgets import QDialog, QTreeWidgetItem, QHeaderView |
13 from PyQt6.QtWidgets import QDialog, QHeaderView, QTreeWidgetItem |
14 |
14 |
|
15 from eric7 import Preferences |
15 from eric7.EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
16 |
17 |
17 from .Ui_GitPatchStatisticsDialog import Ui_GitPatchStatisticsDialog |
18 from .Ui_GitPatchStatisticsDialog import Ui_GitPatchStatisticsDialog |
18 |
|
19 from eric7 import Preferences |
|
20 |
19 |
21 |
20 |
22 class GitPatchStatisticsDialog(QDialog, Ui_GitPatchStatisticsDialog): |
21 class GitPatchStatisticsDialog(QDialog, Ui_GitPatchStatisticsDialog): |
23 """ |
22 """ |
24 Class implementing a dialog to show some patch file statistics. |
23 Class implementing a dialog to show some patch file statistics. |