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/CellBuffer.h | |
parent | cc13723d8f558fb7c48f3f4ed1bb107f35b95397 (diff) | |
download | scintilla-mirror-3f1c1f5fe73d9fe48af8ffc2f0dbf2107d65cf52.tar.gz |
Implement SC_DOCUMENTOPTION_STYLES_NONE.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index a12dc207f..7c999a36e 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -133,6 +133,7 @@ public: */ class CellBuffer { private: + bool hasStyles; SplitVector<char> substance; SplitVector<char> style; bool readOnly; @@ -151,7 +152,7 @@ private: public: - CellBuffer(); + CellBuffer(bool hasStyles_); // Deleted so CellBuffer objects can not be copied. CellBuffer(const CellBuffer &) = delete; void operator=(const CellBuffer &) = delete; |