diff options
author | nyamatongwe <unknown> | 2013-05-26 18:23:09 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-05-26 18:23:09 +1000 |
commit | 25ff1ad0d0811ba9167580bcc6d3587f75efae3f (patch) | |
tree | 28bdb8a91e1c752bfa50505015b82472f5fcf5a2 /src/ScintillaBase.cxx | |
parent | 501509cbec9a2746f84416a0cbe715bc7a504474 (diff) | |
download | scintilla-mirror-25ff1ad0d0811ba9167580bcc6d3587f75efae3f.tar.gz |
Switch SelectionText to use a std::string to hold the data and to provide accessors to this data.
Add a length argument to DropAt, although previous signature still available.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 31db93eca..5d886f5a5 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -14,6 +14,7 @@ #include <string> #include <vector> #include <map> +#include <algorithm> #include "Platform.h" |