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 /src/Document.cxx | |
parent | c5c6d053c3d1ccc28ab2e616eae217dac219519d (diff) | |
download | scintilla-mirror-7957f320052b8b724af43f779282fa63cefd4513.tar.gz |
Templatize decorations to allow 32-bit or 64-bit positions.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 9a420133b..09a91d469 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -113,7 +113,7 @@ Document::Document(int options) : perLineData[ldMargin] = std::make_unique<LineAnnotation>(); perLineData[ldAnnotation] = std::make_unique<LineAnnotation>(); - decorations = DecorationListCreate(); + decorations = DecorationListCreate(false); cb.SetPerLine(this); } |