aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-09-16 10:30:07 +1000
committernyamatongwe <devnull@localhost>2010-09-16 10:30:07 +1000
commit445d15200d654c4f961d80f112738ec46a05ffa7 (patch)
tree0bafd5393b96c8654226565799991b5e484d8af2 /src
parentf36f15772187a166cfa9f6c63c6ec6df6cba7088 (diff)
downloadscintilla-mirror-445d15200d654c4f961d80f112738ec46a05ffa7.tar.gz
Make internal methods private.
Diffstat (limited to 'src')
-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();