aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index d5e6a92ff..6ff0f2d97 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -4084,17 +4084,9 @@ void Editor::Indent(bool forwards) {
ContainerNeedsUpdate(Update::Selection);
}
-class CaseFolderASCII : public CaseFolderTable {
-public:
- CaseFolderASCII() noexcept {
- StandardASCII();
- }
-};
-
-
std::unique_ptr<CaseFolder> Editor::CaseFolderForEncoding() {
// Simple default that only maps ASCII upper case to lower case.
- return std::make_unique<CaseFolderASCII>();
+ return std::make_unique<CaseFolderTable>();
}
/**