aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2010-09-16 10:30:07 +1000
committernyamatongwe <unknown>2010-09-16 10:30:07 +1000
commit44759e200fbab494d6b7ce25a15dde3db05bc1bc (patch)
treead9c07b58ad6b921a72744009ef908d0b28f86fe
parent957357506e9b9929b665a5f7e5d520841ecb9a64 (diff)
downloadscintilla-mirror-44759e200fbab494d6b7ce25a15dde3db05bc1bc.tar.gz
Make internal methods private.
-rw-r--r--src/CellBuffer.h8
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();