aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-07-03 17:28:32 +1000
committerNeil <nyamatongwe@gmail.com>2013-07-03 17:28:32 +1000
commit4dd0738fc3d9b296a9b5b1935ee0334c9f611e32 (patch)
tree502608cfc3ce8aa3acdd8d1e4924f19ac9aaccd1 /src/CellBuffer.h
parent31e63f9b691f2de5dbf268e6dfa772a858872b3c (diff)
downloadscintilla-mirror-4dd0738fc3d9b296a9b5b1935ee0334c9f611e32.tar.gz
Make CellBuffer::DeleteChars return a pointer to the deleted data even
when deleting all of the buffer.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r--src/CellBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h
index 45613bfa0..82179ac9a 100644
--- a/src/CellBuffer.h
+++ b/src/CellBuffer.h
@@ -105,7 +105,7 @@ public:
UndoHistory();
~UndoHistory();
- void AppendAction(actionType at, int position, const char *data, int length, bool &startSequence, bool mayCoalesce=true);
+ const char *AppendAction(actionType at, int position, const char *data, int length, bool &startSequence, bool mayCoalesce=true);
void BeginUndoAction();
void EndUndoAction();