diff options
| author | nyamatongwe <unknown> | 2009-04-19 09:38:40 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2009-04-19 09:38:40 +0000 | 
| commit | bbf8cac83a0fbba3b68a17d119a559ecd521997a (patch) | |
| tree | 4dab662fa7dea25f6329508715bbde47f4f1bd31 /src/CellBuffer.h | |
| parent | e59f78d0a04cf7c9a2b422da634c0b02ef88ee31 (diff) | |
| download | scintilla-mirror-bbf8cac83a0fbba3b68a17d119a559ecd521997a.tar.gz | |
Added UNDO_MAY_COALESCE flag to AddUndoAction.
Diffstat (limited to 'src/CellBuffer.h')
| -rw-r--r-- | src/CellBuffer.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/CellBuffer.h b/src/CellBuffer.h index 395f75f0e..5af135736 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -101,7 +101,7 @@ public:  	UndoHistory();  	~UndoHistory(); -	void AppendAction(actionType at, int position, char *data, int length, bool &startSequence); +	void AppendAction(actionType at, int position, char *data, int length, bool &startSequence, bool mayCoalesce=true);  	void BeginUndoAction();  	void EndUndoAction(); @@ -185,7 +185,7 @@ public:  	bool IsCollectingUndo();  	void BeginUndoAction();  	void EndUndoAction(); -	void AddUndoAction(int token); +	void AddUndoAction(int token, bool mayCoalesce);  	void DeleteUndoHistory();  	/// To perform an undo, StartUndo is called to retrieve the number of steps, then UndoStep is | 
