diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-17 08:23:18 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-17 08:23:18 +1000 |
commit | 255d2d33abf4c2c5a918bacde049004e52b7986f (patch) | |
tree | 4a563a7d7a9594be0e67b6be6c2c493d8ffea9ec /src/ContractionState.h | |
parent | ec79c307ff36cdcce0e520e67bef69e64a3e19b5 (diff) | |
download | scintilla-mirror-255d2d33abf4c2c5a918bacde049004e52b7986f.tar.gz |
Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes.
This option is provisional and experimental.
Diffstat (limited to 'src/ContractionState.h')
-rw-r--r-- | src/ContractionState.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ContractionState.h b/src/ContractionState.h index a951e0a0c..90f5c0784 100644 --- a/src/ContractionState.h +++ b/src/ContractionState.h @@ -45,7 +45,7 @@ public: virtual void ShowAll()=0; }; -std::unique_ptr<IContractionState> ContractionStateCreate(); +std::unique_ptr<IContractionState> ContractionStateCreate(bool largeDocument); } |