[Gtab-cvs] src/drawobjects BoundsHelper.cpp,1.3,1.4 FloatingTextDrawer.cpp,1.3,1.4 NoteColumnDrawer.
Status: Alpha
Brought to you by:
m0ta
|
From: Seavan <se...@us...> - 2006-02-28 07:15:29
|
Update of /cvsroot/gtab/src/drawobjects In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4121/drawobjects Modified Files: BoundsHelper.cpp FloatingTextDrawer.cpp NoteColumnDrawer.cpp NoteMeasureDrawer.cpp NoteStaffDrawer.cpp RehSignDrawer.cpp TabColumnDrawer.cpp TabFretDrawer.cpp TabMeasureDrawer.cpp TabStaffDrawer.cpp TempoMarkerDrawer.cpp drawobject.cpp pagedrawer.cpp sectiondrawer.cpp Log Message: * memory leaks workaround Index: RehSignDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/RehSignDrawer.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RehSignDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.3 --- RehSignDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.4 *************** *** 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 "RehSignDrawer.h" Index: sectiondrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/sectiondrawer.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** sectiondrawer.cpp 26 Feb 2006 12:13:44 -0000 1.9 --- sectiondrawer.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 "sectiondrawer.h" Index: NoteColumnDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/NoteColumnDrawer.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** NoteColumnDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.25 --- NoteColumnDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.26 *************** *** 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 "NoteColumnDrawer.h" #include "../dataobjects/ColumnData.h" Index: NoteStaffDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/NoteStaffDrawer.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** NoteStaffDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.21 --- NoteStaffDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.22 *************** *** 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 "NoteStaffDrawer.h" #include "../dataobjects/staffdata.h" Index: TempoMarkerDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/TempoMarkerDrawer.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TempoMarkerDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.3 --- TempoMarkerDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.4 *************** *** 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 "TempoMarkerDrawer.h" Index: TabColumnDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/TabColumnDrawer.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** TabColumnDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.16 --- TabColumnDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.17 *************** *** 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 "TabColumnDrawer.h" Index: NoteMeasureDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/NoteMeasureDrawer.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** NoteMeasureDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.12 --- NoteMeasureDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.13 *************** *** 28,32 **** --- 28,44 ---- * @date 07-25-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 "NoteMeasureDrawer.h" Index: TabStaffDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/TabStaffDrawer.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** TabStaffDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.20 --- TabStaffDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.21 *************** *** 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 "TabStaffDrawer.h" Index: BoundsHelper.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/BoundsHelper.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** BoundsHelper.cpp 26 Feb 2006 12:13:44 -0000 1.3 --- BoundsHelper.cpp 28 Feb 2006 07:15:24 -0000 1.4 *************** *** 28,32 **** --- 28,44 ---- * @date 04-13-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 "drawobjects/BoundsHelper.h" Index: pagedrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/pagedrawer.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** pagedrawer.cpp 26 Feb 2006 12:13:44 -0000 1.10 --- pagedrawer.cpp 28 Feb 2006 07:15:24 -0000 1.11 *************** *** 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 "pagedrawer.h" Index: TabFretDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/TabFretDrawer.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** TabFretDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.12 --- TabFretDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.13 *************** *** 5,9 **** --- 5,15 ---- * @author S. Avanesov se...@gm... **********************************************************/ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "TabFretDrawer.h" Index: FloatingTextDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/FloatingTextDrawer.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FloatingTextDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.3 --- FloatingTextDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.4 *************** *** 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 "FloatingTextDrawer.h" Index: drawobject.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/drawobject.cpp,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** drawobject.cpp 27 Feb 2006 17:24:56 -0000 1.51 --- drawobject.cpp 28 Feb 2006 07:15:24 -0000 1.52 *************** *** 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 <cstring> #include "drawobject.h" Index: TabMeasureDrawer.cpp =================================================================== RCS file: /cvsroot/gtab/src/drawobjects/TabMeasureDrawer.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** TabMeasureDrawer.cpp 26 Feb 2006 12:13:44 -0000 1.13 --- TabMeasureDrawer.cpp 28 Feb 2006 07:15:24 -0000 1.14 *************** *** 28,32 **** --- 28,38 ---- * @date 07-25-05 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "TabMeasureDrawer.h" |