diff options
author | nyamatongwe <unknown> | 2000-07-18 04:24:17 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-07-18 04:24:17 +0000 |
commit | c8b861658ba73c63cc01f40bac303307d0080184 (patch) | |
tree | c9dd9ac27e358fb20930d015a573172171d9c6c7 /src/CellBuffer.h | |
parent | fbc8d3a114b6fdf12dfe6f56e3893f935dcb74c3 (diff) | |
download | scintilla-mirror-c8b861658ba73c63cc01f40bac303307d0080184.tar.gz |
Added functions to clear all styling and contraction.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index acac9fa2f..4a1ecb398 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -58,6 +58,7 @@ public: void Expand(int sizeNew); void ExpandLevels(int sizeNew=-1); + void ClearLevels(); void InsertValue(int pos, int value); void SetValue(int pos, int value); void Remove(int pos); @@ -220,6 +221,7 @@ public: int SetLevel(int line, int level); int GetLevel(int line); + void ClearLevels(); }; #define CELL_SIZE 2 |