diff options
author | Neil <nyamatongwe@gmail.com> | 2021-04-05 19:34:13 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-04-05 19:34:13 +1000 |
commit | 0f1f537fd035be38e7f93cba998dc75aaf90763d (patch) | |
tree | f82f3a863b01635873186180382a40872d9feecb /src/EditView.cxx | |
parent | bada09f1e1634ac00eed3f23c4f748b1897de96a (diff) | |
download | scintilla-mirror-0f1f537fd035be38e7f93cba998dc75aaf90763d.tar.gz |
Extract unnamed caching enum as LineLayoutCache::Cache and change to enum class.
Diffstat (limited to 'src/EditView.cxx')
-rw-r--r-- | src/EditView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx index b3b107cff..c5e3a3726 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -179,7 +179,7 @@ EditView::EditView() { additionalCaretsBlink = true; additionalCaretsVisible = true; imeCaretBlockOverride = false; - llc.SetLevel(LineLayoutCache::llcCaret); + llc.SetLevel(LineLayoutCache::Cache::caret); posCache.SetSize(0x400); tabArrowHeight = 4; customDrawTabArrow = nullptr; |