]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/palette.cpp
rename method to prevent collision with some BSD definitions of macro Free()
[wxWidgets.git] / src / mac / carbon / palette.cpp
index 85a9fd16d8346f140ac9127f71b2217f94747e27..c847131f4021a64d2d4e3cd5f6d5520e0add2a1e 100644 (file)
 #pragma implementation "palette.h"
 #endif
 
+#include "wx/defs.h"
+
+#if wxUSE_PALETTE
+
 #include "wx/palette.h"
 
 #if !USE_SHARED_LIBRARIES
@@ -32,7 +36,10 @@ wxPaletteRefData::wxPaletteRefData()
 
 wxPaletteRefData::~wxPaletteRefData()
 {
-       delete[] m_palette ;
+    if (m_palette != NULL) {
+        delete[] m_palette ;
+        m_palette = NULL;
+    }
 }
 
 wxPalette::wxPalette()
@@ -106,4 +113,6 @@ bool wxPalette::GetRGB(int index, unsigned char *red, unsigned char *green, unsi
     return TRUE;
 }
 
+#endif
+    // wxUSE_PALETTE