diff options
author | nyamatongwe <unknown> | 2004-04-27 22:13:00 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2004-04-27 22:13:00 +0000 |
commit | 05db48d45c9dbf617f6195074743aaeffc65abc7 (patch) | |
tree | 211ca7e06ffa83b909aba98c601e0e8907c963b9 /src/Document.h | |
parent | 8ded31632d1d4bcbef15896849bf657f420bb664 (diff) | |
download | scintilla-mirror-05db48d45c9dbf617f6195074743aaeffc65abc7.tar.gz |
Continuation Marker feature from Hans Eckardt.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Document.h b/src/Document.h index 18b47eaf5..e31f8e324 100644 --- a/src/Document.h +++ b/src/Document.h @@ -116,6 +116,7 @@ public: int dbcsCodePage; int tabInChars; int indentInChars; + int actualIndentInChars; bool useTabs; bool tabIndents; bool backspaceUnindents; @@ -228,6 +229,7 @@ public: int ExtendStyleRange(int pos, int delta, bool singleLine = false); int ParaUp(int pos); int ParaDown(int pos); + int IndentSize() { return actualIndentInChars; } private: charClassification WordCharClass(unsigned char ch); @@ -239,8 +241,6 @@ private: void NotifyModifyAttempt(); void NotifySavePoint(bool atSavePoint); void NotifyModified(DocModification mh); - - int IndentSize() { return indentInChars ? indentInChars : tabInChars; } }; /** |