diff options
| author | Neil <nyamatongwe@gmail.com> | 2018-02-02 14:34:55 +1100 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2018-02-02 14:34:55 +1100 | 
| commit | 3f1c1f5fe73d9fe48af8ffc2f0dbf2107d65cf52 (patch) | |
| tree | 2f662f0da33a58e1e9700b358ab695c3c04b7465 /src/EditModel.cxx | |
| parent | cc13723d8f558fb7c48f3f4ed1bb107f35b95397 (diff) | |
| download | scintilla-mirror-3f1c1f5fe73d9fe48af8ffc2f0dbf2107d65cf52.tar.gz | |
Implement SC_DOCUMENTOPTION_STYLES_NONE.
Diffstat (limited to 'src/EditModel.cxx')
| -rw-r--r-- | src/EditModel.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditModel.cxx b/src/EditModel.cxx index 0e00bcfe0..08888ba38 100644 --- a/src/EditModel.cxx +++ b/src/EditModel.cxx @@ -69,7 +69,7 @@ EditModel::EditModel() {  	hotspot = Range(Sci::invalidPosition);  	hoverIndicatorPos = Sci::invalidPosition;  	wrapWidth = LineLayout::wrapWidthInfinite; -	pdoc = new Document(); +	pdoc = new Document(SC_DOCUMENTOPTION_DEFAULT);  	pdoc->AddRef();  }  | 
