mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-05 14:18:53 +02:00
Removed some per-file memory allocation debugging that is not needed (and generates warnings) now that we do it from AudacityHeaders.h
This commit is contained in:
parent
396486d3a6
commit
30e6a3dec4
@ -25,14 +25,6 @@ License: GPL v2. See License.txt.
|
|||||||
|
|
||||||
#include <wx/file.h>
|
#include <wx/file.h>
|
||||||
|
|
||||||
#ifdef _DEBUG
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#undef THIS_FILE
|
|
||||||
static char*THIS_FILE= __FILE__;
|
|
||||||
#define new new(_NORMAL_BLOCK, THIS_FILE, __LINE__)
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define UFILE_PROTOCOL "ufile"
|
#define UFILE_PROTOCOL "ufile"
|
||||||
|
|
||||||
#if !defined(USE_FFMPEG)
|
#if !defined(USE_FFMPEG)
|
||||||
|
@ -65,14 +65,6 @@
|
|||||||
#include <wx/combobox.h>
|
#include <wx/combobox.h>
|
||||||
#include <wx/display.h>
|
#include <wx/display.h>
|
||||||
|
|
||||||
#ifdef _DEBUG
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#undef THIS_FILE
|
|
||||||
static char*THIS_FILE= __FILE__;
|
|
||||||
#define new new(_NORMAL_BLOCK, THIS_FILE, __LINE__)
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static const wxChar *DefaultGenres[] =
|
static const wxChar *DefaultGenres[] =
|
||||||
{
|
{
|
||||||
wxT("Blues"),
|
wxT("Blues"),
|
||||||
|
@ -788,7 +788,7 @@ void TrackList::ResizedEvent(const TrackListNode *node)
|
|||||||
|
|
||||||
void TrackList::Add(Track * t)
|
void TrackList::Add(Track * t)
|
||||||
{
|
{
|
||||||
TrackListNode *n = new TrackListNode();
|
TrackListNode *n = new TrackListNode;
|
||||||
t->SetOwner(this, n);
|
t->SetOwner(this, n);
|
||||||
|
|
||||||
n->t = (Track *) t;
|
n->t = (Track *) t;
|
||||||
@ -810,7 +810,7 @@ void TrackList::Add(Track * t)
|
|||||||
|
|
||||||
void TrackList::AddToHead(Track * t)
|
void TrackList::AddToHead(Track * t)
|
||||||
{
|
{
|
||||||
TrackListNode *n = new TrackListNode();
|
TrackListNode *n = new TrackListNode;
|
||||||
t->SetOwner(this, n);
|
t->SetOwner(this, n);
|
||||||
|
|
||||||
n->t = (Track *) t;
|
n->t = (Track *) t;
|
||||||
|
@ -229,14 +229,6 @@ WX_DEFINE_OBJARRAY(TrackClipArray);
|
|||||||
#include "../images/Cursors.h"
|
#include "../images/Cursors.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#ifdef _DEBUG
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#undef THIS_FILE
|
|
||||||
static char*THIS_FILE= __FILE__;
|
|
||||||
#define new new(_NORMAL_BLOCK, THIS_FILE, __LINE__)
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define kLeftInset 4
|
#define kLeftInset 4
|
||||||
#define kTopInset 4
|
#define kTopInset 4
|
||||||
#define kTimerInterval 50 // milliseconds
|
#define kTimerInterval 50 // milliseconds
|
||||||
|
@ -97,14 +97,6 @@
|
|||||||
#include <id3tag.h>
|
#include <id3tag.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _DEBUG
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#undef THIS_FILE
|
|
||||||
static char*THIS_FILE= __FILE__;
|
|
||||||
#define new new(_NORMAL_BLOCK, THIS_FILE, __LINE__)
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
// ExportMP3Options
|
// ExportMP3Options
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
|
@ -177,14 +177,6 @@ different formats.
|
|||||||
#include <wx/tooltip.h>
|
#include <wx/tooltip.h>
|
||||||
#include <wx/toplevel.h>
|
#include <wx/toplevel.h>
|
||||||
|
|
||||||
#ifdef _DEBUG
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#undef THIS_FILE
|
|
||||||
static char*THIS_FILE= __FILE__;
|
|
||||||
#define new new(_NORMAL_BLOCK, THIS_FILE, __LINE__)
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// TimeField Class
|
// TimeField Class
|
||||||
|
Loading…
x
Reference in New Issue
Block a user