]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/scintilla/include/Accessor.h
Use the data scheme to load resources in the WebKitGTK+ implementation, rather than...
[wxWidgets.git] / src / stc / scintilla / include / Accessor.h
index 3f59c07939bad89bbb469d31eb992912022e6b92..d9db9c7bfe389d66b678e693febbbf0c90fdcfc1 100644 (file)
@@ -25,7 +25,7 @@ protected:
        char buf[bufferSize+1];
        int startPos;
        int endPos;
-       int codePage;
+       int codePage;   
 
        virtual bool InternalIsLeadByte(char ch)=0;
        virtual void Fill(int position)=0;
@@ -44,7 +44,7 @@ public:
                if (position < startPos || position >= endPos) {
                        Fill(position);
                        if (position < startPos || position >= endPos) {
-                               // Position is outside range of document
+                               // Position is outside range of document 
                                return chDefault;
                        }
                }
@@ -75,4 +75,5 @@ public:
        virtual void ColourTo(unsigned int pos, int chAttr)=0;
        virtual void SetLevel(int line, int level)=0;
        virtual int IndentAmount(int line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0)=0;
+       virtual void IndicatorFill(int start, int end, int indicator, int value)=0;
 };