diff options
author | mitchell <unknown> | 2018-05-05 12:49:25 -0400 |
---|---|---|
committer | mitchell <unknown> | 2018-05-05 12:49:25 -0400 |
commit | 15be99cd0c446d74f71e9cf05ec3aa1c033a2370 (patch) | |
tree | e0b1a37db946476f36322c4fbe8e6bedf5530703 /src/Document.h | |
parent | 386d275a0a0ea5b2725ff872fe8811cebecd2422 (diff) | |
download | scintilla-mirror-15be99cd0c446d74f71e9cf05ec3aa1c033a2370.tar.gz |
Backport: Split decorations into interface and implementation.
Backport of changeset 6658:693e737f3155.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 5293fb25e..327422434 100644 --- a/src/Document.h +++ b/src/Document.h @@ -263,7 +263,7 @@ public: bool backspaceUnindents; double durationStyleOneLine; - DecorationList decorations; + std::unique_ptr<IDecorationList> decorations; Document(int options); // Deleted so Document objects can not be copied. |