X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/519cb848a8f4c91c73421bb75314754284e593a4..5eac771d0949d4696c7c29f2ead81a2d0b0b73c8:/src/mac/carbon/colordlg.cpp diff --git a/src/mac/carbon/colordlg.cpp b/src/mac/carbon/colordlg.cpp index c6037a9f96..b8df2bcc5a 100644 --- a/src/mac/carbon/colordlg.cpp +++ b/src/mac/carbon/colordlg.cpp @@ -20,6 +20,11 @@ IMPLEMENT_DYNAMIC_CLASS(wxColourDialog, wxDialog) #endif +#include "wx/mac/private.h" +#ifndef __DARWIN__ +#include +#endif + /* * wxColourDialog */ @@ -46,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