aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authormitchell <unknown>2018-05-05 12:49:25 -0400
committermitchell <unknown>2018-05-05 12:49:25 -0400
commit15be99cd0c446d74f71e9cf05ec3aa1c033a2370 (patch)
treee0b1a37db946476f36322c4fbe8e6bedf5530703 /src/Document.h
parent386d275a0a0ea5b2725ff872fe8811cebecd2422 (diff)
downloadscintilla-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.h2
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.