diff options
| author | jedailey <unknown> | 2016-08-31 11:30:52 +1000 | 
|---|---|---|
| committer | jedailey <unknown> | 2016-08-31 11:30:52 +1000 | 
| commit | 26869ee3d67d8f58c6573a6b010e9a615c9d681a (patch) | |
| tree | c0b7a1a2ec3de36ee60ced2ae8a0267f01175f7d /src/Editor.h | |
| parent | 917c4a524591b20ebc039ef8e32c158218412855 (diff) | |
| download | scintilla-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.h | 3 | 
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();  | 
