aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2004-04-27 22:13:00 +0000
committernyamatongwe <devnull@localhost>2004-04-27 22:13:00 +0000
commit8680d7580a9a94f6cd46b2fc21f9d81851a0b3d8 (patch)
tree211ca7e06ffa83b909aba98c601e0e8907c963b9 /src/Document.h
parent816681de6b0d5ed45f6886dfaf18f35ef7c7d191 (diff)
downloadscintilla-mirror-8680d7580a9a94f6cd46b2fc21f9d81851a0b3d8.tar.gz
Continuation Marker feature from Hans Eckardt.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h4
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; }
};
/**