7 Module implementing a dialog to edit the commit message of a revision. |
7 Module implementing a dialog to edit the commit message of a revision. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import QCoreApplication, pyqtSlot |
10 from PyQt6.QtCore import QCoreApplication, pyqtSlot |
11 from PyQt6.QtWidgets import QDialog |
11 from PyQt6.QtWidgets import QDialog |
|
12 from Ui_HgHisteditCommitEditor import Ui_HgHisteditCommitEditor |
12 |
13 |
13 from eric7 import EricUtilities, Preferences |
14 from eric7 import EricUtilities, Preferences |
14 from eric7.EricWidgets import EricMessageBox |
15 from eric7.EricWidgets import EricMessageBox |
15 from eric7.UI_HgHisteditCommitEditor import Ui_HgHisteditCommitEditor |
|
16 |
16 |
17 |
17 |
18 class HgHisteditCommitEditor(QDialog, Ui_HgHisteditCommitEditor): |
18 class HgHisteditCommitEditor(QDialog, Ui_HgHisteditCommitEditor): |
19 """ |
19 """ |
20 Class implementing a dialog to edit the commit message of a revision. |
20 Class implementing a dialog to edit the commit message of a revision. |