RefactoringRope/RenameDialog.py

branch
server_client_variant
changeset 203
c38750e1bafd
parent 189
2711fdd91925
child 245
75a35a927952
--- a/RefactoringRope/RenameDialog.py	Wed Sep 27 19:50:44 2017 +0200
+++ b/RefactoringRope/RenameDialog.py	Fri Sep 29 10:23:35 2017 +0200
@@ -15,8 +15,8 @@
 from E5Gui.E5Application import e5App
 from E5Gui import E5MessageBox
 
-from Ui_RenameDialog import Ui_RenameDialog
-from RefactoringDialogBase import RefactoringDialogBase
+from .Ui_RenameDialog import Ui_RenameDialog
+from .RefactoringDialogBase import RefactoringDialogBase
 
 
 class RenameDialog(RefactoringDialogBase, Ui_RenameDialog):
@@ -71,7 +71,8 @@
         """
         Private slot to react to changes of the new name.
         
-        @param text text entered into the edit (string)
+        @param text text entered into the edit
+        @type str
         """
         self.__okButton.setEnabled(text != "")
         self.__previewButton.setEnabled(text != "")
@@ -81,7 +82,8 @@
         """
         Private slot to act on the button pressed.
         
-        @param button reference to the button pressed (QAbstractButton)
+        @param button reference to the button pressed
+        @type QAbstractButton
         """
         if button == self.__previewButton:
             self.requestPreview()

eric ide

mercurial