Project/AddFoundFilesDialog.py

changeset 2964
84b65fb9e780
parent 2302
f29e9405c851
child 2995
63d874899b8b
--- a/Project/AddFoundFilesDialog.py	Sun Sep 29 15:23:19 2013 +0200
+++ b/Project/AddFoundFilesDialog.py	Sun Sep 29 15:54:10 2013 +0200
@@ -17,12 +17,10 @@
     """
     Class implementing a dialog to show the found files to the user.
     
-    The found files are displayed in a listview.
-    Pressing the 'Add All' button adds all files to the current project,
-    the 'Add Selected' button adds only the selected files and the 'Cancel'
-    button cancels the operation.
+    The found files are displayed in a listview. Pressing the 'Add All' button
+    adds all files to the current project, the 'Add Selected' button adds only
+    the selected files and the 'Cancel' button cancels the operation.
     """
-    
     def __init__(self, files, parent=None, name=None):
         """
         Constructor
@@ -61,7 +59,7 @@
         """
         Private slot to handle the 'Add All' button press.
         
-        @return always 1 (int)
+        Always returns the value 1 (integer).
         """
         self.done(1)
         
@@ -70,7 +68,7 @@
         """
         Private slot to handle the 'Add Selected' button press.
         
-        @return always 2 (int)
+        Always returns the value 2 (integer).
         """
         self.done(2)
         

eric ide

mercurial