aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2010-08-19 13:16:10 +1000
committernyamatongwe <unknown>2010-08-19 13:16:10 +1000
commit6dd145a6e94e36f2e11b2eea0610ed1996112124 (patch)
tree50a9f0f4b785a23f43a67e838eb65ce56e2b6ffc /src/Document.h
parent3dfcb85a1e2def2c14cb0073b16ebc246bd75188 (diff)
downloadscintilla-mirror-6dd145a6e94e36f2e11b2eea0610ed1996112124.tar.gz
Exposed BufferPointer through IDocument.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h2
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);