Index: trunk/src_plugins/hid_gtk2_gdk/gtkhid-gdk.c =================================================================== --- trunk/src_plugins/hid_gtk2_gdk/gtkhid-gdk.c (revision 10712) +++ trunk/src_plugins/hid_gtk2_gdk/gtkhid-gdk.c (revision 10713) @@ -71,7 +71,7 @@ } /** Returns TRUE only if \p color_string has been allocated to \p color. */ -static pcb_bool map_color_string(const char *color_string, GdkColor * color) +static pcb_bool map_color_string(const char *color_string, pcb_gtk_color_t * color) { static GdkColormap *colormap = NULL; pcb_bool parsed; Index: trunk/src_plugins/hid_gtk2_gl/gtkhid-gl.c =================================================================== --- trunk/src_plugins/hid_gtk2_gl/gtkhid-gl.c (revision 10712) +++ trunk/src_plugins/hid_gtk2_gl/gtkhid-gl.c (revision 10713) @@ -83,7 +83,7 @@ } /** Returns TRUE only if \p color_string has been allocated to \p color. */ -static pcb_bool map_color_string(const char *color_string, GdkColor * color) +static pcb_bool map_color_string(const char *color_string, pcb_gtk_color_t * color) { static GdkColormap *colormap = NULL; GHidPort *out = &ghid_port; Index: trunk/src_plugins/hid_gtk3_cairo/gtkhid-cairo.c =================================================================== --- trunk/src_plugins/hid_gtk3_cairo/gtkhid-cairo.c (revision 10712) +++ trunk/src_plugins/hid_gtk3_cairo/gtkhid-cairo.c (revision 10713) @@ -120,7 +120,7 @@ } /** Returns TRUE if \p color_string has been successfully parsed to \p color. */ -static pcb_bool map_color_string(const char *color_string, GdkRGBA * color) +static pcb_bool map_color_string(const char *color_string, pcb_gtk_color_t * color) { pcb_bool parsed; Index: trunk/src_plugins/lib_gtk_common/glue.h =================================================================== --- trunk/src_plugins/lib_gtk_common/glue.h (revision 10712) +++ trunk/src_plugins/lib_gtk_common/glue.h (revision 10713) @@ -60,7 +60,7 @@ /* only for config: */ const gchar *(*get_color_name)(pcb_gtk_color_t * color); - pcb_bool (*map_color_string)(const char *color_string, GdkColor * color); + pcb_bool (*map_color_string)(const char *color_string, pcb_gtk_color_t * color); void (*set_special_colors)(conf_native_t *cfg); void (*layer_buttons_update)(void);