diff options
author | nyamatongwe <devnull@localhost> | 2012-04-14 17:39:21 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-04-14 17:39:21 +1000 |
commit | eed723ed2430aacf1f6a5ee687f690eb65cfea81 (patch) | |
tree | b31be769b6176b7268e7b7bfd6c9721585654a7f | |
parent | 2f3545bb8eb19ffbfc174c32dfd53c35d1fcea3b (diff) | |
download | scintilla-mirror-eed723ed2430aacf1f6a5ee687f690eb65cfea81.tar.gz |
Remove Fold method as identical to superclass. Feature #3517596.
From Marko Njezic.
-rw-r--r-- | src/Editor.cxx | 10 |
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; - } - } }; |