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/Decoration.h | |
| parent | c5c6d053c3d1ccc28ab2e616eae217dac219519d (diff) | |
| download | scintilla-mirror-7957f320052b8b724af43f779282fa63cefd4513.tar.gz | |
Templatize decorations to allow 32-bit or 64-bit positions.
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); } |
