diff options
author | nyamatongwe <unknown> | 2013-05-02 13:16:36 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-05-02 13:16:36 +1000 |
commit | 1f8862974636d649b93b514fc0ff8e5526e304b7 (patch) | |
tree | 6007647c7c8aaaa8741617159b8e86647dfcc4c7 /src/CallTip.h | |
parent | 341ce982991fd356c631c1e706ec3e88d6844c33 (diff) | |
download | scintilla-mirror-1f8862974636d649b93b514fc0ff8e5526e304b7.tar.gz |
Replacing raw pointer and allocation with std::string.
Diffstat (limited to 'src/CallTip.h')
-rw-r--r-- | src/CallTip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CallTip.h b/src/CallTip.h index fdc4db86f..eafaa2f2e 100644 --- a/src/CallTip.h +++ b/src/CallTip.h @@ -17,7 +17,7 @@ namespace Scintilla { class CallTip { int startHighlight; // character offset to start and... int endHighlight; // ...end of highlighted text - char *val; + std::string val; Font font; PRectangle rectUp; // rectangle of last up angle in the tip PRectangle rectDown; // rectangle of last down arrow in the tip |