# HG changeset patch # User Will Thompson # Date 1193787670 0 # Node ID 995fc37576c77ab0b08f62ed8f13fa2118dbf7ff # Parent a62b60a5745d70faf9416dde7b83ca963bec2c4b Fix a type error. I could have sworn I did this before committing... diff -r a62b60a5745d -r 995fc37576c7 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Tue Oct 30 23:33:13 2007 +0000 +++ b/pidgin/gtkblist.c Tue Oct 30 23:41:10 2007 +0000 @@ -4439,7 +4439,7 @@ l = g_list_find_custom(children, account, (GCompareFunc) find_account_button); if (l) { /* it may have already been removed by being clicked on */ button = GTK_WIDGET(l->data); - remove_error_button(button); + remove_error_button(GTK_BUTTON(button)); } g_list_free(l); l = NULL;