5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to edit a list of history entries. |
7 Module implementing a dialog to edit a list of history entries. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import pyqtSlot, Qt |
10 from PyQt6.QtCore import pyqtSlot, Qt |
11 from PyQt5.QtWidgets import QDialog, QInputDialog, QLineEdit |
11 from PyQt6.QtWidgets import QDialog, QInputDialog, QLineEdit |
12 |
12 |
13 from E5Gui import E5MessageBox |
13 from E5Gui import E5MessageBox |
14 |
14 |
15 from .Ui_StartHistoryEditDialog import Ui_StartHistoryEditDialog |
15 from .Ui_StartHistoryEditDialog import Ui_StartHistoryEditDialog |
16 |
16 |