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_UseFunctionDialog import Ui_UseFunctionDialog |
15 from .Ui_UseFunctionDialog import Ui_UseFunctionDialog |
16 from RefactoringDialogBase import RefactoringDialogBase |
16 from .RefactoringDialogBase import RefactoringDialogBase |
17 |
17 |
18 |
18 |
19 class UseFunctionDialog(RefactoringDialogBase, Ui_UseFunctionDialog): |
19 class UseFunctionDialog(RefactoringDialogBase, Ui_UseFunctionDialog): |
20 """ |
20 """ |
21 Class implementing the Use Function dialog. |
21 Class implementing the Use Function dialog. |