aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2008-04-27 07:49:54 +0000
committernyamatongwe <devnull@localhost>2008-04-27 07:49:54 +0000
commit05afdfab73062917988db56f56c09695bef7b0cf (patch)
treef417bd12ca0629aea1894848303450fd0d539757 /src/Document.h
parent3be48e12ea69c4443d7296ad6e00bb77bf9d6f04 (diff)
downloadscintilla-mirror-05afdfab73062917988db56f56c09695bef7b0cf.tar.gz
Implemented GetCharacterPointer feature.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h
index a36c4aafe..04bbd5c74 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -159,6 +159,7 @@ public:
void EndUndoAction() { cb.EndUndoAction(); }
void SetSavePoint();
bool IsSavePoint() { return cb.IsSavePoint(); }
+ const char *BufferPointer() { return cb.BufferPointer(); }
int GetLineIndentation(int line);
void SetLineIndentation(int line, int indent);