10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt5.QtCore import pyqtSlot |
12 from PyQt5.QtCore import pyqtSlot |
13 from PyQt5.QtWidgets import QDialogButtonBox, QAbstractButton |
13 from PyQt5.QtWidgets import QDialogButtonBox, QAbstractButton |
14 |
14 |
15 from Ui_ChangeOccurrencesDialog import Ui_ChangeOccurrencesDialog |
15 from .Ui_ChangeOccurrencesDialog import Ui_ChangeOccurrencesDialog |
16 from RefactoringDialogBase import RefactoringDialogBase |
16 from .RefactoringDialogBase import RefactoringDialogBase |
17 |
17 |
18 |
18 |
19 class ChangeOccurrencesDialog(RefactoringDialogBase, |
19 class ChangeOccurrencesDialog(RefactoringDialogBase, |
20 Ui_ChangeOccurrencesDialog): |
20 Ui_ChangeOccurrencesDialog): |
21 """ |
21 """ |