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/Decoration.h | |
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/Decoration.h')
-rw-r--r-- | src/Decoration.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Decoration.h b/src/Decoration.h index 76f00ec55..1461f2f98 100644 --- a/src/Decoration.h +++ b/src/Decoration.h @@ -50,9 +50,9 @@ public: virtual void SetClickNotified(bool notified) = 0; }; -std::unique_ptr<IDecoration> DecorationCreate(int indicator); +std::unique_ptr<IDecoration> DecorationCreate(bool largeDocument, int indicator); -std::unique_ptr<IDecorationList> DecorationListCreate(); +std::unique_ptr<IDecorationList> DecorationListCreate(bool largeDocument); } |