aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorjedailey <unknown>2016-08-31 11:30:52 +1000
committerjedailey <unknown>2016-08-31 11:30:52 +1000
commit26869ee3d67d8f58c6573a6b010e9a615c9d681a (patch)
treec0b7a1a2ec3de36ee60ced2ae8a0267f01175f7d /src/Editor.h
parent917c4a524591b20ebc039ef8e32c158218412855 (diff)
downloadscintilla-mirror-26869ee3d67d8f58c6573a6b010e9a615c9d681a.tar.gz
Bug [#1850]. Use tabs for virtual space in indentation when tabs enabled.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 93a86fa39..72d4719ed 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -390,7 +390,8 @@ protected: // ScintillaBase subclass needs access to much of Editor
void ChangeSize();
void FilterSelections();
- int InsertSpace(int position, unsigned int spaces);
+ int RealizeVirtualSpace(int position, unsigned int virtualSpace);
+ SelectionPosition RealizeVirtualSpace(const SelectionPosition &position);
void AddChar(char ch);
virtual void AddCharUTF(const char *s, unsigned int len, bool treatAsDBCS=false);
void ClearBeforeTentativeStart();