[Gtab-cvs] src AboutDlg.cpp,1.4,1.5 addpagedlg.cpp,1.18,1.19 application.cpp,1.17,1.18 attstaffdlg.c
Status: Alpha
Brought to you by:
m0ta
Update of /cvsroot/gtab/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4121 Modified Files: AboutDlg.cpp addpagedlg.cpp application.cpp attstaffdlg.cpp bardlg.cpp canvas.cpp configmgr.cpp controller.cpp frame.cpp gpfile.cpp instrument.cpp pagemandlg.cpp pagesel.cpp playbackthrd.cpp ptbfile.cpp rehsigndlg.cpp settingsdlg.cpp stdafx.cpp stdafx.h tempodlg.cpp timesig.cpp tuning.cpp utils.cpp Log Message: * memory leaks workaround Index: playbackthrd.cpp =================================================================== RCS file: /cvsroot/gtab/src/playbackthrd.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** playbackthrd.cpp 27 Feb 2006 17:48:57 -0000 1.13 --- playbackthrd.cpp 28 Feb 2006 07:15:24 -0000 1.14 *************** *** 27,31 **** --- 27,43 ---- */ + // PCH file + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "playbackthrd.h" Index: ptbfile.cpp =================================================================== RCS file: /cvsroot/gtab/src/ptbfile.cpp,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** ptbfile.cpp 26 Feb 2006 12:13:44 -0000 1.35 --- ptbfile.cpp 28 Feb 2006 07:15:24 -0000 1.36 *************** *** 28,32 **** --- 28,38 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #ifndef __NOPTAB__ *************** *** 40,49 **** #endif - #ifndef _MSVC #include <ptb.h> - #endif - #ifdef _MSVC - #include "gtab_src/ptb.h" - #endif #include "ptbfile.h" --- 46,50 ---- Index: tuning.cpp =================================================================== RCS file: /cvsroot/gtab/src/tuning.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** tuning.cpp 20 Aug 2005 15:56:58 -0000 1.13 --- tuning.cpp 28 Feb 2006 07:15:24 -0000 1.14 *************** *** 35,39 **** --- 35,45 ---- #endif + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "tuning.h" #ifdef _DEBUG Index: attstaffdlg.cpp =================================================================== RCS file: /cvsroot/gtab/src/attstaffdlg.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** attstaffdlg.cpp 26 Feb 2006 12:13:44 -0000 1.10 --- attstaffdlg.cpp 28 Feb 2006 07:15:23 -0000 1.11 *************** *** 28,32 **** --- 28,38 ---- * @date 01-20-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include <wx/wx.h> #include <wx/xrc/xmlres.h> Index: tempodlg.cpp =================================================================== RCS file: /cvsroot/gtab/src/tempodlg.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tempodlg.cpp 28 Feb 2005 20:22:01 -0000 1.5 --- tempodlg.cpp 28 Feb 2006 07:15:24 -0000 1.6 *************** *** 27,31 **** --- 27,37 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "tempodlg.h" Index: utils.cpp =================================================================== RCS file: /cvsroot/gtab/src/utils.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** utils.cpp 9 Nov 2005 12:54:37 -0000 1.7 --- utils.cpp 28 Feb 2006 07:15:24 -0000 1.8 *************** *** 28,32 **** --- 28,38 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "utils.h" Index: configmgr.cpp =================================================================== RCS file: /cvsroot/gtab/src/configmgr.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** configmgr.cpp 9 Mar 2005 21:17:54 -0000 1.13 --- configmgr.cpp 28 Feb 2006 07:15:23 -0000 1.14 *************** *** 29,33 **** --- 29,39 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "configmgr.h" Index: pagesel.cpp =================================================================== RCS file: /cvsroot/gtab/src/pagesel.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** pagesel.cpp 26 Feb 2006 12:13:44 -0000 1.16 --- pagesel.cpp 28 Feb 2006 07:15:24 -0000 1.17 *************** *** 27,31 **** --- 27,37 ---- * @date 11-05-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "pagesel.h" #include "canvas.h" Index: stdafx.h =================================================================== RCS file: /cvsroot/gtab/src/stdafx.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** stdafx.h 27 Feb 2006 17:24:56 -0000 1.6 --- stdafx.h 28 Feb 2006 07:15:24 -0000 1.7 *************** *** 13,16 **** --- 13,17 ---- #ifdef _MSC_VER + #define CRTDBG_MAP_ALLOC #include <crtdbg.h> #undef DEBUG_NEW Index: stdafx.cpp =================================================================== RCS file: /cvsroot/gtab/src/stdafx.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** stdafx.cpp 20 Jan 2005 13:52:44 -0000 1.1 --- stdafx.cpp 28 Feb 2006 07:15:24 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + // PCH file + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection Index: instrument.cpp =================================================================== RCS file: /cvsroot/gtab/src/instrument.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** instrument.cpp 28 Feb 2005 20:22:01 -0000 1.8 --- instrument.cpp 28 Feb 2006 07:15:24 -0000 1.9 *************** *** 27,31 **** --- 27,37 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "instrument.h" Index: addpagedlg.cpp =================================================================== RCS file: /cvsroot/gtab/src/addpagedlg.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** addpagedlg.cpp 29 Aug 2005 16:35:54 -0000 1.18 --- addpagedlg.cpp 28 Feb 2006 07:15:23 -0000 1.19 *************** *** 27,31 **** --- 27,37 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include <wx/wx.h> Index: pagemandlg.cpp =================================================================== RCS file: /cvsroot/gtab/src/pagemandlg.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** pagemandlg.cpp 26 Feb 2006 12:13:44 -0000 1.16 --- pagemandlg.cpp 28 Feb 2006 07:15:24 -0000 1.17 *************** *** 28,32 **** --- 28,38 ---- * @date 22-01-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include <wx/wx.h> #include <wx/xrc/xmlres.h> Index: canvas.cpp =================================================================== RCS file: /cvsroot/gtab/src/canvas.cpp,v retrieving revision 1.133 retrieving revision 1.134 diff -C2 -d -r1.133 -r1.134 *** canvas.cpp 12 Jan 2006 17:51:32 -0000 1.133 --- canvas.cpp 28 Feb 2006 07:15:23 -0000 1.134 *************** *** 29,33 **** --- 29,39 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include <algorithm> Index: bardlg.cpp =================================================================== RCS file: /cvsroot/gtab/src/bardlg.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** bardlg.cpp 26 Feb 2006 12:13:44 -0000 1.7 --- bardlg.cpp 28 Feb 2006 07:15:23 -0000 1.8 *************** *** 26,30 **** --- 26,36 ---- * @date 11-16-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "bardlg.h" Index: controller.cpp =================================================================== RCS file: /cvsroot/gtab/src/controller.cpp,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** controller.cpp 26 Feb 2006 13:46:07 -0000 1.77 --- controller.cpp 28 Feb 2006 07:15:23 -0000 1.78 *************** *** 28,32 **** --- 28,38 ---- * @date 02-xx-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "controller.h" #include "frame.h" Index: timesig.cpp =================================================================== RCS file: /cvsroot/gtab/src/timesig.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** timesig.cpp 20 Aug 2005 15:37:46 -0000 1.11 --- timesig.cpp 28 Feb 2006 07:15:24 -0000 1.12 *************** *** 27,31 **** --- 27,37 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "timesig.h" Index: rehsigndlg.cpp =================================================================== RCS file: /cvsroot/gtab/src/rehsigndlg.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** rehsigndlg.cpp 26 Feb 2006 12:13:44 -0000 1.4 --- rehsigndlg.cpp 28 Feb 2006 07:15:24 -0000 1.5 *************** *** 27,31 **** --- 27,37 ---- * @date 24-01-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include <wx/wx.h> #include <wx/statline.h> Index: gpfile.cpp =================================================================== RCS file: /cvsroot/gtab/src/gpfile.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** gpfile.cpp 26 Feb 2006 12:13:44 -0000 1.9 --- gpfile.cpp 28 Feb 2006 07:15:24 -0000 1.10 *************** *** 27,31 **** --- 27,37 ---- * @date 02-26-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #ifndef __NOPTAB__ Index: frame.cpp =================================================================== RCS file: /cvsroot/gtab/src/frame.cpp,v retrieving revision 1.101 retrieving revision 1.102 diff -C2 -d -r1.101 -r1.102 *** frame.cpp 27 Feb 2006 18:24:46 -0000 1.101 --- frame.cpp 28 Feb 2006 07:15:24 -0000 1.102 *************** *** 28,32 **** --- 28,44 ---- * @date xx-xx-04 */ + // PCH file + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include <wx/xrc/xmlres.h> Index: application.cpp =================================================================== RCS file: /cvsroot/gtab/src/application.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** application.cpp 26 Feb 2006 12:13:44 -0000 1.17 --- application.cpp 28 Feb 2006 07:15:23 -0000 1.18 *************** *** 28,32 **** --- 28,38 ---- * @date 11-04-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include <wx/xrc/xmlres.h> Index: AboutDlg.cpp =================================================================== RCS file: /cvsroot/gtab/src/AboutDlg.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AboutDlg.cpp 26 Feb 2006 12:13:44 -0000 1.4 --- AboutDlg.cpp 28 Feb 2006 07:15:23 -0000 1.5 *************** *** 26,30 **** --- 26,36 ---- * @date 20-08-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include <wx/wx.h> #include <wx/xrc/xmlres.h> Index: settingsdlg.cpp =================================================================== RCS file: /cvsroot/gtab/src/settingsdlg.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** settingsdlg.cpp 4 Feb 2005 09:05:34 -0000 1.6 --- settingsdlg.cpp 28 Feb 2006 07:15:24 -0000 1.7 *************** *** 27,31 **** --- 27,37 ---- */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "settingsdlg.h" |