# HG changeset patch # User masca@cpw.pidgin.im # Date 1316148557 0 # Node ID 6eb0a2a860b35bcd2f21626d78ea4557f629350a # Parent 20dfcc9aa471ada7b629f69fa1582b2d13b9f86f Workaround the bug that causes a crash when closing a gtkwindow. This bug was caused by some data corruption when using the webview as a GtkIMHtml in the smile themes code. diff -r 20dfcc9aa471 -r 6eb0a2a860b3 pidgin/gtkthemes.c --- a/pidgin/gtkthemes.c Thu Sep 15 22:22:11 2011 +0000 +++ b/pidgin/gtkthemes.c Fri Sep 16 04:49:17 2011 +0000 @@ -122,6 +122,8 @@ static void _pidgin_themes_smiley_themeize(GtkWidget *imhtml, gboolean custom) { + /* FIXME: move imhtml dependency to use webview. */ +#if 0 struct smiley_list *list; if (!current_smiley_theme) return; @@ -147,6 +149,7 @@ list = list->next; } +#endif } void pidgin_themes_smiley_themeize(GtkWidget *imhtml)