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/Document.h | |
parent | cc13723d8f558fb7c48f3f4ed1bb107f35b95397 (diff) | |
download | scintilla-mirror-3f1c1f5fe73d9fe48af8ffc2f0dbf2107d65cf52.tar.gz |
Implement SC_DOCUMENTOPTION_STYLES_NONE.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 9f22f154a..bd956ccbf 100644 --- a/src/Document.h +++ b/src/Document.h @@ -265,7 +265,7 @@ public: DecorationList decorations; - Document(); + Document(int options); // Deleted so Document objects can not be copied. Document(const Document &) = delete; void operator=(const Document &) = delete; |