diff options
author | nyamatongwe <devnull@localhost> | 2011-01-02 09:56:17 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-01-02 09:56:17 +1100 |
commit | a317b8d0d40cabfcf5cafb64a632a2c961bfb43c (patch) | |
tree | 3b6c5b6d63bd9c6571b150e7915ca0a45ff24dbd /src/CallTip.cxx | |
parent | 45a9984b8ed3d8055690472dfe9e8b0e90fe73fc (diff) | |
download | scintilla-mirror-a317b8d0d40cabfcf5cafb64a632a2c961bfb43c.tar.gz |
Avoid cppcheck warnings.
Diffstat (limited to 'src/CallTip.cxx')
-rw-r--r-- | src/CallTip.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CallTip.cxx b/src/CallTip.cxx index 18a524752..604304bf8 100644 --- a/src/CallTip.cxx +++ b/src/CallTip.cxx @@ -29,6 +29,7 @@ CallTip::CallTip() { rectUp = PRectangle(0,0,0,0); rectDown = PRectangle(0,0,0,0); lineHeight = 1; + offsetMain = 0; startHighlight = 0; endHighlight = 0; tabSize = 0; @@ -45,6 +46,8 @@ CallTip::CallTip() { colourSel.desired = ColourDesired(0, 0, 0x80); colourShade.desired = ColourDesired(0, 0, 0); colourLight.desired = ColourDesired(0xc0, 0xc0, 0xc0); + codePage = 0; + clickPlace = 0; } CallTip::~CallTip() { |