// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#include "wx/gtk/private.h"
+#if wxUSE_COLOURPICKERCTRL && defined(__WXGTK24__)
+
#include "wx/clrpicker.h"
-#include <gdk/gdk.h>
#include <gtk/gtk.h>
-
-
// ============================================================================
// implementation
// ============================================================================
-#if wxUSE_COLOURPICKERCTRL && defined(__WXGTK24__)
-
//-----------------------------------------------------------------------------
// "color-set"
//-----------------------------------------------------------------------------
{
// update the m_colour member of the wxColourButton
wxASSERT(p);
- gtk_color_button_get_color(widget, p->GetGdkColor());
+ GdkColor gdkColor;
+ gtk_color_button_get_color(widget, &gdkColor);
+ p->SetGdkColor(gdkColor);
// fire the colour-changed event
wxColourPickerEvent event(p, p->GetId(), p->GetColour());