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 /test/unit/testCellBuffer.cxx | |
parent | cc13723d8f558fb7c48f3f4ed1bb107f35b95397 (diff) | |
download | scintilla-mirror-3f1c1f5fe73d9fe48af8ffc2f0dbf2107d65cf52.tar.gz |
Implement SC_DOCUMENTOPTION_STYLES_NONE.
Diffstat (limited to 'test/unit/testCellBuffer.cxx')
-rw-r--r-- | test/unit/testCellBuffer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/testCellBuffer.cxx b/test/unit/testCellBuffer.cxx index d71bab88d..0efe35014 100644 --- a/test/unit/testCellBuffer.cxx +++ b/test/unit/testCellBuffer.cxx @@ -25,7 +25,7 @@ TEST_CASE("CellBuffer") { const char sText[] = "Scintilla"; const Sci::Position sLength = static_cast<Sci::Position>(strlen(sText)); - CellBuffer cb; + CellBuffer cb(true); SECTION("InsertOneLine") { bool startSequence = false; |