RefactoringRope/MatchesDialog.py

branch
server_client_variant
changeset 203
c38750e1bafd
parent 165
ea41742015af
child 245
75a35a927952
--- a/RefactoringRope/MatchesDialog.py	Wed Sep 27 19:50:44 2017 +0200
+++ b/RefactoringRope/MatchesDialog.py	Fri Sep 29 10:23:35 2017 +0200
@@ -15,7 +15,7 @@
 
 from E5Gui.E5Application import e5App
 
-from Ui_MatchesDialog import Ui_MatchesDialog
+from .Ui_MatchesDialog import Ui_MatchesDialog
 
 
 class MatchesDialog(QDialog, Ui_MatchesDialog):
@@ -29,10 +29,14 @@
         Constructor
         
         @param ui reference to the UI object
+        @type UI.UserInterface
         @param showConfidence flag indicating the display of the
-            confidence column (boolean)
-        @param parent parent of this dialog (QWidget)
-        @param name name of this dialog (string)
+            confidence column
+        @type bool
+        @param parent parent of this dialog
+        @type QWidget
+        @param name name of this dialog
+        @type str
         """
         QDialog.__init__(self, parent)
         if name:
@@ -69,8 +73,10 @@
         """
         Private slot to handle the itemActivated signal of the list.
         
-        @param item reference to the activated item (QTreeWidgetItem)
-        @param column column the item was activated in (integer)
+        @param item reference to the activated item
+        @type QTreeWidgetItem
+        @param column column the item was activated in
+        @type int
         """
         lineno = int(item.text(1))
         fn = item.data(0, MatchesDialog.FilePathRole)

eric ide

mercurial