RefactoringRope/RenameDialog.py

branch
eric7
changeset 409
65153bf17e8d
parent 396
933b8fcd854f
child 411
8cccb49bba7b
equal deleted inserted replaced
408:19321ca1a6d1 409:65153bf17e8d
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.

eric ide

mercurial