X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2f1ae4143271ae63a17e052a1a471d16e9cd8c44..e7300ec6d9ebbd1cfa2fcf12c0ce6e5aee85a152:/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