diff options
author | nyamatongwe <unknown> | 2013-05-04 17:48:40 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-05-04 17:48:40 +1000 |
commit | bfd0b6cc3189a3181e223c09a82474ed5f466476 (patch) | |
tree | b4dddc7940ef98ba1029c856cd2ce0f2224b65b6 /src/Editor.h | |
parent | 64f6fb40458ccd7a61c10f06f59d37708c6501f6 (diff) | |
download | scintilla-mirror-bfd0b6cc3189a3181e223c09a82474ed5f466476.tar.gz |
Replacing raw pointers and allocations with std::string.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 5f0e5dad6..51420cf1e 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -523,7 +523,6 @@ protected: // ScintillaBase subclass needs access to much of Editor void GoToLine(int lineNo); virtual void CopyToClipboard(const SelectionText &selectedText) = 0; - char *CopyRange(int start, int end); std::string RangeText(int start, int end) const; void CopySelectionRange(SelectionText *ss, bool allowLineCopy=false); void CopyRangeToClipboard(int start, int end); |