diff options
author | nyamatongwe <unknown> | 2012-06-17 13:38:21 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-06-17 13:38:21 +1000 |
commit | f0d56e473978dcfa017b6597ef4e2e09e5a477e6 (patch) | |
tree | c7d9b15f268ef84d933a9931ce05db5a1190ffb1 /src/Editor.h | |
parent | 7a340b339181d7e8981ad8d67ec07d75b2e5fa54 (diff) | |
download | scintilla-mirror-f0d56e473978dcfa017b6597ef4e2e09e5a477e6.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); |