changeset 21381:995fc37576c7

Fix a type error. I could have sworn I did this before committing...
author Will Thompson <will.thompson@collabora.co.uk>
date Tue, 30 Oct 2007 23:41:10 +0000
parents a62b60a5745d
children e694942bbcfa
files pidgin/gtkblist.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;