aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-12-05 20:36:01 +1100
committerNeil <nyamatongwe@gmail.com>2014-12-05 20:36:01 +1100
commitc0e2261ef73cee1f91866314f7b9405be4b88867 (patch)
treed6818c8224eb3fc2e5e3e6df83840131c888de28 /src/Editor.h
parent121cdce949c0aadcda06306726a741023262fb9e (diff)
downloadscintilla-mirror-c0e2261ef73cee1f91866314f7b9405be4b88867.tar.gz
Extract FillVirtualSpace so it is not repeated and can be made less complex in
the future.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 27a2469aa..ec24f66fd 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -388,6 +388,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
int InsertSpace(int position, unsigned int spaces);
void AddChar(char ch);
virtual void AddCharUTF(const char *s, unsigned int len, bool treatAsDBCS=false);
+ void FillVirtualSpace();
void InsertPaste(const char *text, int len);
enum PasteShape { pasteStream=0, pasteRectangular = 1, pasteLine = 2 };
void InsertPasteShape(const char *text, int len, PasteShape shape);