diff options
author | nyamatongwe <unknown> | 2007-06-14 12:56:07 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-06-14 12:56:07 +0000 |
commit | 1a82b474a3a6e035844e4f2e32f65cdca3c0cf00 (patch) | |
tree | 71f4185e78eef123191f1abb8ffd9eeaa2478d07 /src | |
parent | d60f99e5b5eabf4b2faf201c5badd746b5b796a6 (diff) | |
download | scintilla-mirror-1a82b474a3a6e035844e4f2e32f65cdca3c0cf00.tar.gz |
Fixing position cache size setting and documenting the position cache.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 6af15a297..f96ef1bfc 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -6379,7 +6379,7 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return llc.GetLevel(); case SCI_SETPOSITIONCACHE: - posCache.SetSize(0x400); + posCache.SetSize(wParam); break; case SCI_GETPOSITIONCACHE: |