]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/colordlg.cpp
fixes to the sizers behaviour necessary to make the log dialog work again
[wxWidgets.git] / src / mac / colordlg.cpp
index e91938f8ad7d402d7e4285767a95d6aa11646d19..b8df2bcc5a302c5b1a61f77113575ed8a6a127ab 100644 (file)
 
 #include "wx/mac/colordlg.h"
 
+#if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxColourDialog, wxDialog)
+#endif
+
+#include "wx/mac/private.h"
+#ifndef __DARWIN__
+#include <ColorPicker.h>
+#endif
 
 /*
  * wxColourDialog
@@ -44,13 +51,13 @@ bool wxColourDialog::Create(wxWindow *parent, wxColourData *data)
 int wxColourDialog::ShowModal()
 {
        Point where ;
-       RGBColor currentColor = m_colourData.dataColour.GetPixel() , newColor ;
+       RGBColor currentColor = *((RGBColor*)m_colourData.dataColour.GetPixel()) , newColor ;
        
        where.h = where.v = -1;
 
        if (GetColor( where, "\pSelect a new palette color.", &currentColor, &newColor ))
        {
-               m_colourData.dataColour.Set( newColor ) ;
+               m_colourData.dataColour.Set( (WXCOLORREF*) &newColor ) ;
        return wxID_OK;
        }
        else