diff src/util.c @ 5676:dae79aefac8d

[gaim-migrate @ 6094] I've been meaning to do this for a LONG time. The conversation API now follows the naming convention of the rest of the new APIs. I'll get some g_return_*_if_fail() checks in there soon. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 21:51:06 +0000
parents 86456ec3ca25
children bd0d0e89cac3
line wrap: on
line diff
--- a/src/util.c	Mon Jun 02 21:14:50 2003 +0000
+++ b/src/util.c	Mon Jun 02 21:51:06 2003 +0000
@@ -1039,7 +1039,7 @@
  	/* aim:goim?screenname=screenname&message=message */
 	if (!g_ascii_strncasecmp(uri, "aim:goim?", strlen("aim:goim?"))) {
 		char *who, *what;
-		struct gaim_conversation *c;
+		GaimConversation *c;
 		uri = uri + strlen("aim:goim?");
 		
 		if (!(who = strstr(uri, "screenname="))) {
@@ -1071,7 +1071,7 @@
 		g_free(who);
 
 		if (what) {
-			struct gaim_gtk_conversation *gtkconv = GAIM_GTK_CONVERSATION(c);
+			GaimGtkConversation *gtkconv = GAIM_GTK_CONVERSATION(c);
 
 			gtk_text_buffer_insert_at_cursor(gtkconv->entry_buffer, what, -1);
 			g_free(what);