diff options
author | nyamatongwe <unknown> | 2007-06-24 12:02:23 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-06-24 12:02:23 +0000 |
commit | 903e4bd44bab47455f533915caaa95bd2fd2e99e (patch) | |
tree | fd041ad1e922734432d617c50c2c80575a71ec84 /src/Editor.h | |
parent | b443cc0a72149358aab36d9a8b26e5021d72fbfc (diff) | |
download | scintilla-mirror-903e4bd44bab47455f533915caaa95bd2fd2e99e.tar.gz |
Make the styles array variable length so it can be increased to 256 entries
without always taking 24K.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index 213b0e361..501abb632 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -454,6 +454,8 @@ protected: // ScintillaBase subclass needs access to much of Editor void AddStyledText(char *buffer, int appendLength); virtual sptr_t DefWndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) = 0; + void StyleSetMessage(unsigned int iMessage, uptr_t wParam, sptr_t lParam); + sptr_t StyleGetMessage(unsigned int iMessage, uptr_t wParam, sptr_t lParam); public: // Public so the COM thunks can access it. |