diff options
author | Neil <nyamatongwe@gmail.com> | 2016-11-15 16:51:14 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-11-15 16:51:14 +1100 |
commit | ed72ad02a2f9c6bb616dfabb3e9459e7f5a45b37 (patch) | |
tree | 05599ebd8c209c524c948b75246b97a4965c45a6 /src/CellBuffer.h | |
parent | cb6936a8e059bbffa99c27e781abef34f61fb848 (diff) | |
download | scintilla-mirror-ed72ad02a2f9c6bb616dfabb3e9459e7f5a45b37.tar.gz |
Remove declaration of methods that were moved to Document in change set 2867.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index 1c53d14e6..c1e973cff 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -47,22 +47,6 @@ public: int LineStart(int line) const { return starts.PositionFromPartition(line); } - - int MarkValue(int line); - int AddMark(int line, int marker); - void MergeMarkers(int pos); - void DeleteMark(int line, int markerNum, bool all); - void DeleteMarkFromHandle(int markerHandle); - int LineFromHandle(int markerHandle); - - void ClearLevels(); - int SetLevel(int line, int level); - int GetLevel(int line); - - int SetLineState(int line, int state); - int GetLineState(int line); - int GetMaxLineState(); - }; enum actionType { insertAction, removeAction, startAction, containerAction }; |