aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorjohnsonj <devnull@localhost>2015-09-04 13:07:49 +1000
committerjohnsonj <devnull@localhost>2015-09-04 13:07:49 +1000
commit3dc404cbf409efeb8eb3bdcd38d21e5a218454a3 (patch)
tree756930c1786c2b668ff707b7b7c71fc54539948b /src/Editor.h
parent37c8cba55c4b6ad5fcefec97175072d73bb58743 (diff)
downloadscintilla-mirror-3dc404cbf409efeb8eb3bdcd38d21e5a218454a3.tar.gz
Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index fdc86f9f6..7b88cbab0 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -392,7 +392,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 ClearBeforeTentativeStart();
void InsertPaste(const char *text, int len);
enum PasteShape { pasteStream=0, pasteRectangular = 1, pasteLine = 2 };
void InsertPasteShape(const char *text, int len, PasteShape shape);