]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/colordlg.cpp
Performance optimization
[wxWidgets.git] / src / mac / carbon / colordlg.cpp
index 6948802acd1a38d2f42271d5b1f51b6d6997d2a2..bdb49c62c9d420e0ec7695ba7993a9ee2a4bea36 100644 (file)
@@ -21,9 +21,6 @@
 IMPLEMENT_DYNAMIC_CLASS(wxColourDialog, wxDialog)
 
 #include "wx/mac/private.h"
-#ifndef __DARWIN__
-#include <ColorPicker.h>
-#endif
 
 /*
  * wxColourDialog
@@ -52,7 +49,6 @@ int wxColourDialog::ShowModal()
 {
     RGBColor currentColor = *((RGBColor*)m_colourData.m_dataColour.GetPixel()) ;
 
-#if TARGET_API_MAC_OSX
     NColorPickerInfo info;
     OSStatus err ;
     memset(&info, 0, sizeof(info)) ;
@@ -72,18 +68,6 @@ int wxColourDialog::ShowModal()
 
         return wxID_OK;
     }
-#else
-    RGBColor newColor ;
-    Point where ;
-
-    where.h = where.v = -1;
-
-    if (GetColor( where, "\pSelect a new palette color.", &currentColor, &newColor ))
-    {
-        m_colourData.m_dataColour.Set( (WXCOLORREF*) &newColor ) ;
-        return wxID_OK;
-    }
-#endif
     return wxID_CANCEL;
 }