--- a/pidgin/gtkconv-theme.c Sat Sep 03 02:50:16 2016 -0400 +++ b/pidgin/gtkconv-theme.c Sun Sep 04 04:45:09 2016 -0400 @@ -763,16 +763,15 @@ { char *file = g_build_filename(dir, "Contents", "Resources", "Incoming", "SenderColors.txt", NULL); char *contents; - priv->nick_colors = g_array_new(FALSE, FALSE, sizeof(GdkColor)); + priv->nick_colors = g_array_new(FALSE, FALSE, sizeof(GdkRGBA)); if (g_file_get_contents(file, &contents, NULL, NULL)) { int i; gchar ** color_strings = g_strsplit_set(contents, "\r\n:", -1); for(i=0; color_strings[i]; i++) { - GdkColor color; - if(gdk_color_parse(color_strings[i], &color)) - { + GdkRGBA color; + if (gdk_rgba_parse(&color, color_strings[i])) { g_array_append_val(priv->nick_colors, color); } }