diff options
author | nyamatongwe <devnull@localhost> | 2005-12-11 23:43:04 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-12-11 23:43:04 +0000 |
commit | 8baea8206456c00cf13b6160e51e22be87ab42bd (patch) | |
tree | 9b6fe767b3ac0c8fa0f6fbba1f1ccada6263f3b1 /src/CellBuffer.h | |
parent | 341cb23a35eb6372191044140a1d2437faaafe02 (diff) | |
download | scintilla-mirror-8baea8206456c00cf13b6160e51e22be87ab42bd.tar.gz |
Patch from Armel Asselin in RFE 1377661 to store positions in undo stack
in terms of document (cell) position rather than byte position.
Will help allow expansion to more than 2 bytes per cell.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index b16eef5e5..bb81fd572 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -191,7 +191,6 @@ public: int LineStart(int line); int LineFromPosition(int pos) { return lv.LineFromPosition(pos); } const char *InsertString(int position, char *s, int insertLength); - void InsertCharStyle(int position, char ch, char style); /// Setting styles for positions outside the range of the buffer is safe and has no effect. /// @return true if the style of a character is changed. |