diff options
author | Zufu Liu <unknown> | 2023-01-12 22:02:24 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2023-01-12 22:02:24 +1100 |
commit | 7ac090022ebef882b2b403174b06a3edf391e705 (patch) | |
tree | ef5e64fb038313bc7f5594b725f4869d74ccb1f3 /src/Editor.h | |
parent | d57b40b5d815504ccd726ed5f2457df097141fd3 (diff) | |
download | scintilla-mirror-7ac090022ebef882b2b403174b06a3edf391e705.tar.gz |
Feature [feature-requests:#1474] Move EOL string function to Document and return
string_view.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Editor.h b/src/Editor.h index 85d95e21d..d757dd4c4 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -608,8 +608,6 @@ protected: // ScintillaBase subclass needs access to much of Editor Scintilla::sptr_t StyleGetMessage(Scintilla::Message iMessage, Scintilla::uptr_t wParam, Scintilla::sptr_t lParam); void SetSelectionNMessage(Scintilla::Message iMessage, Scintilla::uptr_t wParam, Scintilla::sptr_t lParam); - static const char *StringFromEOLMode(Scintilla::EndOfLine eolMode) noexcept; - // Coercion functions for transforming WndProc parameters into pointers static void *PtrFromSPtr(Scintilla::sptr_t lParam) noexcept { return reinterpret_cast<void *>(lParam); |