diff options
| author | nyamatongwe <devnull@localhost> | 2007-06-24 12:02:23 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2007-06-24 12:02:23 +0000 |
| commit | 48974cb7802717896ed7560bf0520cf942b8c245 (patch) | |
| tree | fd041ad1e922734432d617c50c2c80575a71ec84 /src/Editor.h | |
| parent | bd5472e347f8cfc139197a64c59d8a79d654ec0c (diff) | |
| download | scintilla-mirror-48974cb7802717896ed7560bf0520cf942b8c245.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. |
