5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to edit the history modification plan. |
7 Module implementing a dialog to edit the history modification plan. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import pyqtSlot, QCoreApplication |
10 from PyQt6.QtCore import pyqtSlot, QCoreApplication |
11 from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QComboBox |
11 from PyQt6.QtWidgets import QDialog, QTreeWidgetItem, QComboBox |
12 |
12 |
13 from E5Gui import E5MessageBox |
13 from E5Gui import E5MessageBox |
14 |
14 |
15 from Ui_HgHisteditPlanEditor import Ui_HgHisteditPlanEditor |
15 from Ui_HgHisteditPlanEditor import Ui_HgHisteditPlanEditor |
16 |
16 |