QScintilla/Editor.py

changeset 938
f421f2138c0f
parent 929
ed471c1f23b8
child 939
10d3a201cd27
--- a/QScintilla/Editor.py	Thu Mar 10 14:00:34 2011 +0100
+++ b/QScintilla/Editor.py	Thu Mar 10 14:50:53 2011 +0100
@@ -1584,21 +1584,6 @@
         """
         return self.encoding
         
-    def getFolds(self):
-        """
-        Public method to get a list line numbers of collapsed folds.
-        
-        @return list of line numbers of folded lines (list of integer)
-        """
-        line = 0
-        folds = []
-        maxline = self.lines()
-        while line < maxline:
-            if self.foldHeaderAt(line) and not self.foldExpandedAt(line):
-                folds.append(line)
-            line += 1
-        return folds
-        
     def isPy2File(self):
         """
         Public method to return a flag indicating a Python file.

eric ide

mercurial