diff options
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index dcaa6fc6b..bcfd4c82a 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -6754,11 +6754,11 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return vs.wrapIndentMode; case SCI_SETLAYOUTCACHE: - view.llc.SetLevel(static_cast<int>(wParam)); + view.llc.SetLevel(static_cast<LineLayoutCache::Cache>(wParam)); break; case SCI_GETLAYOUTCACHE: - return view.llc.GetLevel(); + return static_cast<sptr_t>(view.llc.GetLevel()); case SCI_SETPOSITIONCACHE: view.posCache.SetSize(wParam); |