aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-08-25 17:36:43 +1000
committerNeil <nyamatongwe@gmail.com>2017-08-25 17:36:43 +1000
commit98cacd3e780a3568b6223b28aaecb747655b0b9d (patch)
treeb1818c07406247b2278d740a6997a762aee1ee4f /src/Editor.cxx
parent703aaadda121889b28bd24ee787bef2a550c5883 (diff)
downloadscintilla-mirror-98cacd3e780a3568b6223b28aaecb747655b0b9d.tar.gz
Moved *StyleBits* APIs into deprecated category.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 93a157061..05796c7bf 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -6971,12 +6971,15 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
vs.ResetDefaultStyle();
InvalidateStyleRedraw();
break;
+
+#ifdef INCLUDE_DEPRECATED_FEATURES
case SCI_SETSTYLEBITS:
vs.EnsureStyle(0xff);
break;
case SCI_GETSTYLEBITS:
return 8;
+#endif
case SCI_SETLINESTATE:
return pdoc->SetLineState(static_cast<int>(wParam), static_cast<int>(lParam));