X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4ce7b1e43fdf835a77a78765fe73de707b89e85f..582f07c2532e6e2d7d1ccb235354548e9bada9bf:/src/gtk/clrpicker.cpp?ds=sidebyside diff --git a/src/gtk/clrpicker.cpp b/src/gtk/clrpicker.cpp index 9b5cc89a47..672a8593cb 100644 --- a/src/gtk/clrpicker.cpp +++ b/src/gtk/clrpicker.cpp @@ -21,9 +21,6 @@ #include "wx/clrpicker.h" -#include "wx/gtk/private.h" - -#include #include // ============================================================================ @@ -40,7 +37,9 @@ static void gtk_clrbutton_setcolor_callback(GtkColorButton *widget, { // 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());