]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed memory leak in wxLogChain
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 27 Apr 2002 22:14:49 +0000 (22:14 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 27 Apr 2002 22:14:49 +0000 (22:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15287 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/log.h

index edbddebb630616f40b198fde3b15e3fd4f291bf4..28272c9b9c7dac2ea414f6fbdeea4b4f0976bab8 100644 (file)
@@ -313,7 +313,7 @@ class WXDLLEXPORT wxLogChain : public wxLog
 {
 public:
     wxLogChain(wxLog *logger);
-    virtual ~wxLogChain() { delete m_logOld; }
+    virtual ~wxLogChain();
 
     // change the new log target
     void SetLog(wxLog *logger);