From 0d2bd5e004b657be9bd66e26161f1cf7299707ea Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 17 Jun 2012 13:38:21 +1000 Subject: Use std::string instead of fixed size strings. Decrease direct access to the autocompletion list box from outside AutoComplete. --- src/Editor.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Editor.h') 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); -- cgit v1.2.3