diff options
author | nyamatongwe <devnull@localhost> | 2001-10-13 21:53:18 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-10-13 21:53:18 +0000 |
commit | 7f9c088f5457d11062659fe66a165e90e31b00f7 (patch) | |
tree | 72d51919b07ee319c7b6333b34448ab31ed2c1db /include/Scintilla.h | |
parent | ddb2fad7b7e66a653592a5844d06e32b2b7dd939 (diff) | |
download | scintilla-mirror-7f9c088f5457d11062659fe66a165e90e31b00f7.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 |