]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/scintilla/include/WindowAccessor.h
Interface fixes for Phoenix
[wxWidgets.git] / src / stc / scintilla / include / WindowAccessor.h
index e107a0659caebd545912d0ca0f6d3b1e291daeb8..6f265f658095267c2c2221602566a92a5fcb981b 100644 (file)
@@ -12,13 +12,14 @@ namespace Scintilla {
 
 /**
  */
+
 class WindowAccessor : public Accessor {
        // Private so WindowAccessor objects can not be copied
        WindowAccessor(const WindowAccessor &source) : Accessor(), props(source.props) {}
        WindowAccessor &operator=(const WindowAccessor &) { return *this; }
 protected:
        WindowID id;
-       PropSet &props;
+       PropertyGet &props;
        int lenDoc;
 
        char styleBuf[bufferSize];
@@ -30,7 +31,7 @@ protected:
        bool InternalIsLeadByte(char ch);
        void Fill(int position);
 public:
-       WindowAccessor(WindowID id_, PropSet &props_) : 
+       WindowAccessor(WindowID id_, PropertyGet &props_) : 
                Accessor(), id(id_), props(props_), 
                lenDoc(-1), validLen(0), chFlags(0), chWhile(0) {
        }