diff src/gtkconv.c @ 11137:096020ae09a9

[gaim-migrate @ 13201] Some more deworming. I mean, dewarning. I also realized that lots of glib uses guchar* instead of guint* for passing around bits of binary data, so I changed some stuff in util.c that I'd already changed. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 21 Jul 2005 05:49:48 +0000
parents e099f00b2f93
children dbc518c453f2
line wrap: on
line diff
--- a/src/gtkconv.c	Thu Jul 21 04:16:35 2005 +0000
+++ b/src/gtkconv.c	Thu Jul 21 05:49:48 2005 +0000
@@ -703,7 +703,7 @@
 		char *username = NULL;
 		GaimAccount *account;
 
-		if (gaim_gtk_parse_x_im_contact(sd->data, FALSE, &account,
+		if (gaim_gtk_parse_x_im_contact((const char *)sd->data, FALSE, &account,
 										&protocol, &username, NULL))
 		{
 			if (account == NULL)
@@ -4156,7 +4156,7 @@
 		char *username = NULL;
 		GaimAccount *account;
 
-		if (gaim_gtk_parse_x_im_contact(sd->data, FALSE, &account,
+		if (gaim_gtk_parse_x_im_contact((const char *)sd->data, FALSE, &account,
 						&protocol, &username, NULL))
 		{
 			if (account == NULL)
@@ -5365,7 +5365,7 @@
 
 static void
 gaim_gtkconv_custom_smiley_write(GaimConversation *conv, const char *smile,
-                                      const char * data, gint64 size)
+                                      const guchar *data, gsize size)
 {
 	GaimGtkConversation *gtkconv;
 	GtkIMHtmlSmiley *smiley;