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 | 7957f320052b8b724af43f779282fa63cefd4513 (patch) | |
| tree | 02fb3d6adc4e194c7cbedfb1931c7510b1687d7f /test | |
| parent | c5c6d053c3d1ccc28ab2e616eae217dac219519d (diff) | |
| download | scintilla-mirror-7957f320052b8b724af43f779282fa63cefd4513.tar.gz | |
Templatize decorations to allow 32-bit or 64-bit positions.
Diffstat (limited to 'test')
| -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); |
