aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CallTip.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-05-02 13:16:36 +1000
committernyamatongwe <devnull@localhost>2013-05-02 13:16:36 +1000
commit99b7137e39e76ef912a7928aa7e12b284b46b1ec (patch)
treeae0e0bcf069de6233429e68fb0bf3a4fdc16ecf6 /src/CallTip.h
parentbf3eb596d5cd6405fea1dd8aea7ab8a9038101b4 (diff)
downloadscintilla-mirror-99b7137e39e76ef912a7928aa7e12b284b46b1ec.tar.gz
Replacing raw pointer and allocation with std::string.
Diffstat (limited to 'src/CallTip.h')
-rw-r--r--src/CallTip.h2
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