diff options
author | nyamatongwe <devnull@localhost> | 2010-08-19 13:16:10 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-08-19 13:16:10 +1000 |
commit | e4fe4cbba4bb351c4c2165659eb50734488fcc7a (patch) | |
tree | 94a6313dd4d7ca1fcd0286e59bd70e2029905129 /src | |
parent | 9b2502bd7230644985cc4fef07555add8b340f20 (diff) | |
download | scintilla-mirror-e4fe4cbba4bb351c4c2165659eb50734488fcc7a.tar.gz |
Exposed BufferPointer through IDocument.
Diffstat (limited to 'src')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 6d2c2d0bb..660ec7854 100644 --- a/src/Document.h +++ b/src/Document.h @@ -254,7 +254,7 @@ public: void AddUndoAction(int token, bool mayCoalesce) { cb.AddUndoAction(token, mayCoalesce); } void SetSavePoint(); bool IsSavePoint() { return cb.IsSavePoint(); } - const char *BufferPointer() { return cb.BufferPointer(); } + const char * SCI_METHOD BufferPointer() { return cb.BufferPointer(); } int GetLineIndentation(int line); void SetLineIndentation(int line, int indent); |