diff options
author | nyamatongwe <devnull@localhost> | 2000-07-18 04:24:17 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-07-18 04:24:17 +0000 |
commit | dee236ce71b0ce4795a6d2773f47b4075c283d8c (patch) | |
tree | c9dd9ac27e358fb20930d015a573172171d9c6c7 /src/Document.h | |
parent | 0fcb749581b4806a6dba56eb7edb6ceb961ab08e (diff) | |
download | scintilla-mirror-dee236ce71b0ce4795a6d2773f47b4075c283d8c.tar.gz |
Added functions to clear all styling and contraction.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index b8f24ebe1..524cce605 100644 --- a/src/Document.h +++ b/src/Document.h @@ -156,6 +156,7 @@ public: int SetLevel(int line, int level); int GetLevel(int line) { return cb.GetLevel(line); } + void ClearLevels() { cb.ClearLevels(); } int GetLastChild(int lineParent, int level=-1); int GetFoldParent(int line); |