diff options
author | nyamatongwe <devnull@localhost> | 2012-06-17 13:38:21 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-06-17 13:38:21 +1000 |
commit | 0d2bd5e004b657be9bd66e26161f1cf7299707ea (patch) | |
tree | cb92a15ff4afba794cd8cc8ee0bf9ecd75bccfd1 /src/Editor.h | |
parent | 6b61cd57097eba543a36f6cd78954c43e31a7bef (diff) | |
download | scintilla-mirror-0d2bd5e004b657be9bd66e26161f1cf7299707ea.tar.gz |
Use std::string instead of fixed size strings.
Decrease direct access to the autocompletion list box from outside AutoComplete.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index f8ab19d9e..00e4ec3a6 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -480,6 +480,7 @@ protected: // ScintillaBase subclass needs access to much of Editor 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); void CopyText(int length, const char *text); |