changeset 4327:da5e1b57adb0

[gaim-migrate @ 4583] the chatlist plugin didn't get the memo about the new grab_url parameter. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 17 Jan 2003 16:52:32 +0000
parents eb63f9960d07
children 2cbcaf41cfee
files plugins/chatlist.c
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/chatlist.c	Fri Jan 17 09:27:15 2003 +0000
+++ b/plugins/chatlist.c	Fri Jan 17 16:52:32 2003 +0000
@@ -137,10 +137,9 @@
 	setup_buddy_chats();
 }
 
-static void ref_list_callback(gpointer data, char *text)
+static void ref_list_callback(gpointer data, char *text, unsigned long len)
 {
 	char *c;
-	int len;
 	GtkWidget *item;
 	GList *items = GTK_LIST(cp->list1)->children;
 	struct chat_room *cr;
@@ -149,8 +148,6 @@
 	if (!text)
 		return;
 
-	len = strlen(text);
-
 	while (items) {
 		g_free(gtk_object_get_user_data(GTK_OBJECT(items->data)));
 		items = items->next;