aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2012-04-14 17:39:21 +1000
committernyamatongwe <devnull@localhost>2012-04-14 17:39:21 +1000
commiteed723ed2430aacf1f6a5ee687f690eb65cfea81 (patch)
treeb31be769b6176b7268e7b7bfd6c9721585654a7f
parent2f3545bb8eb19ffbfc174c32dfd53c35d1fcea3b (diff)
downloadscintilla-mirror-eed723ed2430aacf1f6a5ee687f690eb65cfea81.tar.gz
Remove Fold method as identical to superclass. Feature #3517596.
From Marko Njezic.
-rw-r--r--src/Editor.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 2d19decbf..ad9aad5c8 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -5727,16 +5727,6 @@ public:
}
~CaseFolderASCII() {
}
- virtual size_t Fold(char *folded, size_t sizeFolded, const char *mixed, size_t lenMixed) {
- if (lenMixed > sizeFolded) {
- return 0;
- } else {
- for (size_t i=0; i<lenMixed; i++) {
- folded[i] = mapping[static_cast<unsigned char>(mixed[i])];
- }
- return lenMixed;
- }
- }
};