diff options
| author | nyamatongwe <unknown> | 2010-09-16 10:30:07 +1000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2010-09-16 10:30:07 +1000 | 
| commit | 44759e200fbab494d6b7ce25a15dde3db05bc1bc (patch) | |
| tree | ad9c07b58ad6b921a72744009ef908d0b28f86fe | |
| parent | 957357506e9b9929b665a5f7e5d520841ecb9a64 (diff) | |
| download | scintilla-mirror-44759e200fbab494d6b7ce25a15dde3db05bc1bc.tar.gz | |
Make internal methods private.
| -rw-r--r-- | src/CellBuffer.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/CellBuffer.h b/src/CellBuffer.h index 78f586e76..d485695a9 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -142,6 +142,10 @@ private:  	LineVector lv; +	/// Actions without undo +	void BasicInsertString(int position, const char *s, int insertLength); +	void BasicDeleteChars(int position, int deleteLength); +  public:  	CellBuffer(); @@ -178,10 +182,6 @@ public:  	void SetSavePoint();  	bool IsSavePoint(); -	/// Actions without undo -	void BasicInsertString(int position, const char *s, int insertLength); -	void BasicDeleteChars(int position, int deleteLength); -  	bool SetUndoCollection(bool collectUndo);  	bool IsCollectingUndo() const;  	void BeginUndoAction(); | 
