[Gtab-cvs] src/commands ChangeAttribute.cpp,1.4,1.5 Command.cpp,1.6,1.7 CommandStorage.cpp,1.12,1.13
Status: Alpha
Brought to you by:
m0ta
|
From: Seavan <se...@us...> - 2006-02-28 07:15:27
|
Update of /cvsroot/gtab/src/commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4121/commands Modified Files: ChangeAttribute.cpp Command.cpp CommandStorage.cpp EnterNote.cpp SetDurationCommand.cpp Log Message: * memory leaks workaround Index: SetDurationCommand.cpp =================================================================== RCS file: /cvsroot/gtab/src/commands/SetDurationCommand.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SetDurationCommand.cpp 26 Feb 2006 12:13:44 -0000 1.4 --- SetDurationCommand.cpp 28 Feb 2006 07:15:24 -0000 1.5 *************** *** 28,32 **** --- 28,38 ---- * @date 10-14-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "SetDurationCommand.h" Index: EnterNote.cpp =================================================================== RCS file: /cvsroot/gtab/src/commands/EnterNote.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** EnterNote.cpp 26 Feb 2006 12:13:44 -0000 1.7 --- EnterNote.cpp 28 Feb 2006 07:15:24 -0000 1.8 *************** *** 28,32 **** --- 28,38 ---- * @date 10-14-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "EnterNote.h" Index: CommandStorage.cpp =================================================================== RCS file: /cvsroot/gtab/src/commands/CommandStorage.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** CommandStorage.cpp 26 Feb 2006 12:13:44 -0000 1.12 --- CommandStorage.cpp 28 Feb 2006 07:15:24 -0000 1.13 *************** *** 1,3 **** --- 1,9 ---- + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "CommandStorage.h" Index: ChangeAttribute.cpp =================================================================== RCS file: /cvsroot/gtab/src/commands/ChangeAttribute.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ChangeAttribute.cpp 26 Feb 2006 12:13:44 -0000 1.4 --- ChangeAttribute.cpp 28 Feb 2006 07:15:24 -0000 1.5 *************** *** 28,32 **** --- 28,38 ---- * @date 10-14-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "ChangeAttribute.h" Index: Command.cpp =================================================================== RCS file: /cvsroot/gtab/src/commands/Command.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Command.cpp 26 Feb 2006 12:13:44 -0000 1.6 --- Command.cpp 28 Feb 2006 07:15:24 -0000 1.7 *************** *** 1,3 **** --- 1,9 ---- + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "Command.h" |