aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CaseFolder.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-04-05 15:48:13 +1000
committerNeil <nyamatongwe@gmail.com>2021-04-05 15:48:13 +1000
commit9f9b24ae9bc0ae771454732868cdb136fe995e42 (patch)
treedc423f9d6e8bf3265e67b5a1adfeabf576327604 /src/CaseFolder.cxx
parentf27b21cb797b856c9f8d2158ba00b6aeccb29680 (diff)
downloadscintilla-mirror-9f9b24ae9bc0ae771454732868cdb136fe995e42.tar.gz
Change CaseConversion to an enum class.
Diffstat (limited to 'src/CaseFolder.cxx')
-rw-r--r--src/CaseFolder.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CaseFolder.cxx b/src/CaseFolder.cxx
index bce593a98..d093829ba 100644
--- a/src/CaseFolder.cxx
+++ b/src/CaseFolder.cxx
@@ -53,7 +53,7 @@ void CaseFolderTable::StandardASCII() noexcept {
CaseFolderUnicode::CaseFolderUnicode() {
StandardASCII();
- converter = ConverterFor(CaseConversionFold);
+ converter = ConverterFor(CaseConversion::fold);
}
size_t CaseFolderUnicode::Fold(char *folded, size_t sizeFolded, const char *mixed, size_t lenMixed) {