diff options
author | nyamatongwe <unknown> | 2001-10-13 21:53:18 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-10-13 21:53:18 +0000 |
commit | 6e2d1edc3531bfe6e470802c14db3e52d99b537a (patch) | |
tree | 72d51919b07ee319c7b6333b34448ab31ed2c1db /include/Scintilla.h | |
parent | 8d451ecb6d91124b2f6de24f57fc508884ab5bfa (diff) | |
download | scintilla-mirror-6e2d1edc3531bfe6e470802c14db3e52d99b537a.tar.gz |
Deprecated SCN_CHECKBRACE and SCN_POSCHANGED.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 9c634f90f..e49bd959e 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -496,12 +496,10 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCN_KEY 2005 #define SCN_DOUBLECLICK 2006 #define SCN_UPDATEUI 2007 -#define SCN_CHECKBRACE 2007 #define SCN_MODIFIED 2008 #define SCN_MACRORECORD 2009 #define SCN_MARGINCLICK 2010 #define SCN_NEEDSHOWN 2011 -#define SCN_POSCHANGED 2012 #define SCN_PAINTED 2013 #define SCN_USERLISTSELECTION 2014 #define SCN_URIDROPPED 2015 @@ -583,6 +581,9 @@ struct SCNotification { #ifdef INCLUDE_DEPRECATED_FEATURES +#define SCN_POSCHANGED 2012 +#define SCN_CHECKBRACE 2007 + #endif #endif |