diff options
author | Neil <nyamatongwe@gmail.com> | 2018-03-28 10:53:44 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-03-28 10:53:44 +1100 |
commit | 23dbbd416d77783c0058788c72914c8178696dba (patch) | |
tree | 733d4fe366ef049a69e9513fd6990301b4e26f0d /test/unit | |
parent | 990047786bc60230ac2b505e8a632dc0df965257 (diff) | |
download | scintilla-mirror-23dbbd416d77783c0058788c72914c8178696dba.tar.gz |
Backport: Templatize decorations to allow 32-bit or 64-bit positions.
Backport of changeset 6693:7247d1c9c27f.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/testDecoration.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/testDecoration.cxx b/test/unit/testDecoration.cxx index b8e880c2c..7641850be 100644 --- a/test/unit/testDecoration.cxx +++ b/test/unit/testDecoration.cxx @@ -26,7 +26,7 @@ using namespace Scintilla; TEST_CASE("Decoration") { - std::unique_ptr<IDecoration> deco = DecorationCreate(indicator); + std::unique_ptr<IDecoration> deco = DecorationCreate(false, indicator); SECTION("HasCorrectIndicator") { REQUIRE(indicator == deco->Indicator()); @@ -54,7 +54,7 @@ TEST_CASE("Decoration") { TEST_CASE("DecorationList") { - std::unique_ptr<IDecorationList> decol = DecorationListCreate(); + std::unique_ptr<IDecorationList> decol = DecorationListCreate(false); SECTION("HasCorrectIndicator") { decol->SetCurrentIndicator(indicator); |