UI/LogView.py

changeset 2965
d133c7edd88a
parent 2409
df3820f08247
child 3012
d177226027e2
--- a/UI/LogView.py	Sun Sep 29 15:54:10 2013 +0200
+++ b/UI/LogView.py	Sun Sep 29 18:22:08 2013 +0200
@@ -182,6 +182,10 @@
     def searchNext(self, txt, caseSensitive, wholeWord):
         """
         Public method to search the next occurrence of the given text.
+        
+        @param txt text to search for (string)
+        @param caseSensitive flag indicating case sensitivity (boolean)
+        @param wholeWord flag indicating a search for the whole word (boolean)
         """
         self.__lastSearch = (txt, caseSensitive, wholeWord)
         flags = QTextDocument.FindFlags()
@@ -195,6 +199,10 @@
     def searchPrev(self, txt, caseSensitive, wholeWord):
         """
         Public method to search the previous occurrence of the given text.
+        
+        @param txt text to search for (string)
+        @param caseSensitive flag indicating case sensitivity (boolean)
+        @param wholeWord flag indicating a search for the whole word (boolean)
         """
         self.__lastSearch = (txt, caseSensitive, wholeWord)
         flags = QTextDocument.FindFlags(QTextDocument.FindBackward)

eric ide

mercurial