diff options
author | Neil <nyamatongwe@gmail.com> | 2017-08-25 17:36:43 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-08-25 17:36:43 +1000 |
commit | 98cacd3e780a3568b6223b28aaecb747655b0b9d (patch) | |
tree | b1818c07406247b2278d740a6997a762aee1ee4f /src/ScintillaBase.cxx | |
parent | 703aaadda121889b28bd24ee787bef2a550c5883 (diff) | |
download | scintilla-mirror-98cacd3e780a3568b6223b28aaecb747655b0b9d.tar.gz |
Moved *StyleBits* APIs into deprecated category.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index c0166c41b..378baad73 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -1092,8 +1092,10 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara return reinterpret_cast<sptr_t>( DocumentLexState()->PrivateCall(static_cast<int>(wParam), reinterpret_cast<void *>(lParam))); +#ifdef INCLUDE_DEPRECATED_FEATURES case SCI_GETSTYLEBITSNEEDED: return 8; +#endif case SCI_PROPERTYNAMES: return StringResult(lParam, DocumentLexState()->PropertyNames()); |