X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad81651f00edc6f489d9b6a0839d316a964fd521..e5251d4f78176837e2eb857fae246435207ccaf2:/src/mac/colordlg.cpp?ds=sidebyside diff --git a/src/mac/colordlg.cpp b/src/mac/colordlg.cpp index e91938f8ad..b8df2bcc5a 100644 --- a/src/mac/colordlg.cpp +++ b/src/mac/colordlg.cpp @@ -16,7 +16,14 @@ #include "wx/mac/colordlg.h" +#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxColourDialog, wxDialog) +#endif + +#include "wx/mac/private.h" +#ifndef __DARWIN__ +#include +#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.", ¤tColor, &newColor )) { - m_colourData.dataColour.Set( newColor ) ; + m_colourData.dataColour.Set( (WXCOLORREF*) &newColor ) ; return wxID_OK; } else