6 """ |
6 """ |
7 Module implementing the Rename dialog. |
7 Module implementing the Rename dialog. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot |
10 from PyQt6.QtCore import pyqtSlot |
11 from PyQt6.QtWidgets import QDialogButtonBox, QAbstractButton |
11 from PyQt6.QtWidgets import QAbstractButton, QDialogButtonBox |
12 |
12 |
13 from eric7.EricWidgets import EricMessageBox |
13 from eric7.EricWidgets import EricMessageBox |
14 from eric7.EricWidgets.EricApplication import ericApp |
14 from eric7.EricWidgets.EricApplication import ericApp |
15 |
15 |
|
16 from .RefactoringDialogBase import RefactoringDialogBase |
16 from .Ui_RenameDialog import Ui_RenameDialog |
17 from .Ui_RenameDialog import Ui_RenameDialog |
17 from .RefactoringDialogBase import RefactoringDialogBase |
|
18 |
18 |
19 |
19 |
20 class RenameDialog(RefactoringDialogBase, Ui_RenameDialog): |
20 class RenameDialog(RefactoringDialogBase, Ui_RenameDialog): |
21 """ |
21 """ |
22 Class implementing the Rename dialog. |
22 Class implementing the Rename dialog. |