MacOSX: compile error fix after r3329

This commit is contained in:
unknown 2012-01-10 18:54:40 +01:00
parent 81a7af5704
commit c8dd7d95de
2 changed files with 4 additions and 1 deletions

View File

@ -33,7 +33,6 @@
#include "colors.h"
#include "base_struct.h"
#include <wx/overlay.h>
class EDA_DRAW_FRAME;
class BASE_SCREEN;

View File

@ -46,6 +46,10 @@
#include "colors.h"
#include "common.h"
#ifdef USE_WX_OVERLAY
#include <wx/overlay.h>
#endif
// C++ guarantees that operator delete checks its argument for null-ness
#ifndef SAFE_DELETE
#define SAFE_DELETE( p ) delete (p); (p) = NULL;