diff options
author | nyamatongwe <devnull@localhost> | 2001-02-24 04:08:34 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-02-24 04:08:34 +0000 |
commit | 82027cf284a076832be17903ef7ab7ec81529974 (patch) | |
tree | 416dc82d2d987b3018359ca7b0409dc20b3d3945 /src | |
parent | 4cce8d7a80da3fb7b1314cfc299d4867a9a9e060 (diff) | |
download | scintilla-mirror-82027cf284a076832be17903ef7ab7ec81529974.tar.gz |
Fixed font leak.
Diffstat (limited to 'src')
-rw-r--r-- | src/CallTip.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CallTip.cxx b/src/CallTip.cxx index 3483f89c1..b4e6b2da7 100644 --- a/src/CallTip.cxx +++ b/src/CallTip.cxx @@ -29,6 +29,7 @@ CallTip::CallTip() { } CallTip::~CallTip() { + font.Release(); wCallTip.Destroy(); delete []val; val = 0; |