diff options
author | nyamatongwe <devnull@localhost> | 2013-05-04 17:48:40 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-05-04 17:48:40 +1000 |
commit | 4947d05b57e5d1d009090937ed54ff47da7eb67a (patch) | |
tree | 444e24b7a4524d9f57931ef9b610141dc9b1bc26 /src/Editor.h | |
parent | 2f0800e34d0412868ca78bdb01e9418781d2a994 (diff) | |
download | scintilla-mirror-4947d05b57e5d1d009090937ed54ff47da7eb67a.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); |