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 /src/Document.cxx | |
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 '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 97cf80077..34238af35 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -117,7 +117,7 @@ Document::Document(int options) : perLineData[ldMargin].reset(new LineAnnotation()); perLineData[ldAnnotation].reset(new LineAnnotation()); - decorations = DecorationListCreate(); + decorations = DecorationListCreate(false); cb.SetPerLine(this); } |