[Gtab-cvs] src/dataobjects CachedData.cpp,1.2,1.3 ColumnData.cpp,1.19,1.20 DocumentData.cpp,1.2,1.3
Status: Alpha
Brought to you by:
m0ta
Update of /cvsroot/gtab/src/dataobjects In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4121/dataobjects Modified Files: CachedData.cpp ColumnData.cpp DocumentData.cpp FretData.cpp MeasureData.cpp SectionData.cpp StaffData.cpp dataobject.cpp pagedata.cpp Log Message: * memory leaks workaround Index: DocumentData.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/DocumentData.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DocumentData.cpp 26 Feb 2006 12:13:44 -0000 1.2 --- DocumentData.cpp 28 Feb 2006 07:15:24 -0000 1.3 *************** *** 28,32 **** --- 28,44 ---- * @date 02-xx-06 */ + // 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 "documentdata.h" Index: MeasureData.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/MeasureData.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** MeasureData.cpp 26 Feb 2006 12:13:44 -0000 1.17 --- MeasureData.cpp 28 Feb 2006 07:15:24 -0000 1.18 *************** *** 28,32 **** --- 28,38 ---- * @date 06-xx-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "MeasureData.h" #include "staffdata.h" Index: dataobject.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/dataobject.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** dataobject.cpp 26 Feb 2006 12:13:44 -0000 1.6 --- dataobject.cpp 28 Feb 2006 07:15:24 -0000 1.7 *************** *** 28,32 **** --- 28,38 ---- * @date 21-08-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "dataobject.h" Index: SectionData.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/SectionData.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** SectionData.cpp 26 Feb 2006 12:13:44 -0000 1.9 --- SectionData.cpp 28 Feb 2006 07:15:24 -0000 1.10 *************** *** 28,32 **** --- 28,38 ---- * @date 06-xx-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "sectiondata.h" #include "staffdata.h" Index: FretData.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/FretData.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** FretData.cpp 26 Feb 2006 12:13:44 -0000 1.13 --- FretData.cpp 28 Feb 2006 07:15:24 -0000 1.14 *************** *** 28,32 **** --- 28,44 ---- * @date 06-xx-05 */ + // 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 "FretData.h" #include "pagedata.h" Index: StaffData.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/StaffData.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** StaffData.cpp 26 Feb 2006 12:13:44 -0000 1.6 --- StaffData.cpp 28 Feb 2006 07:15:24 -0000 1.7 *************** *** 28,32 **** --- 28,38 ---- * @date 06-xx-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "staffdata.h" Index: CachedData.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/CachedData.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CachedData.cpp 26 Feb 2006 12:13:44 -0000 1.2 --- CachedData.cpp 28 Feb 2006 07:15:24 -0000 1.3 *************** *** 1,3 **** --- 1,15 ---- + // 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 "CachedData.h" #include <wx/wx.h> Index: pagedata.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/pagedata.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** pagedata.cpp 26 Feb 2006 12:13:44 -0000 1.9 --- pagedata.cpp 28 Feb 2006 07:15:24 -0000 1.10 *************** *** 27,31 **** --- 27,37 ---- * @author Samvel Avanesov */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "pagedata.h" #include "sectiondata.h" Index: ColumnData.cpp =================================================================== RCS file: /cvsroot/gtab/src/dataobjects/ColumnData.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** ColumnData.cpp 27 Feb 2006 14:05:55 -0000 1.19 --- ColumnData.cpp 28 Feb 2006 07:15:24 -0000 1.20 *************** *** 28,32 **** --- 28,44 ---- * @date 06-xx-05 */ + // 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 "ColumnData.h" #include "FretData.h" |