From: <td...@us...> - 2003-08-11 18:00:33
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1:/tmp/cvs-serv8042 Modified Files: AnyEdit.cpp AnyEdit.dsp ClassView.cpp ctagslib.lib Log Message: New version of CTags library Index: AnyEdit.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEdit.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** AnyEdit.cpp 11 Aug 2003 04:03:19 -0000 1.29 --- AnyEdit.cpp 11 Aug 2003 17:21:49 -0000 1.30 *************** *** 224,228 **** //check for leaks ! _CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF ); --- 224,228 ---- //check for leaks ! //_CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF ); *************** *** 241,246 **** return TRUE; - _CrtDumpMemoryLeaks(); - return TRUE; } --- 241,244 ---- Index: AnyEdit.dsp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEdit.dsp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** AnyEdit.dsp 31 Jul 2003 08:57:48 -0000 1.20 --- AnyEdit.dsp 11 Aug 2003 17:21:50 -0000 1.21 *************** *** 396,415 **** # Begin Source File - SOURCE=.\LBSpinButtonCtrl.cpp - # End Source File - # Begin Source File - - SOURCE=.\LBSpinButtonCtrl.h - # End Source File - # Begin Source File - - SOURCE=.\LBTabCtrl.cpp - # End Source File - # Begin Source File - - SOURCE=.\LBTabCtrl.h - # End Source File - # Begin Source File - SOURCE=.\Plugin.cpp # End Source File --- 396,399 ---- Index: ClassView.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClassView.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ClassView.cpp 31 Jul 2003 08:57:48 -0000 1.17 --- ClassView.cpp 11 Aug 2003 17:21:50 -0000 1.18 *************** *** 50,53 **** --- 50,55 ---- CClassView::~CClassView() { + if(m_SingleLock) + delete m_SingleLock; // to avoid memory leaks when closing the AnyEdit app, CTagEntry classes (that are pointed to by GetItemData // are deleted on WM_DESTROY (OnDestoy function); Index: ctagslib.lib =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ctagslib.lib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsqO0XJD and /tmp/cvsG6Hkza differ |