pidgin/gtknotify.c

branch
soc.2013.gobjectification
changeset 34662
f14347f38e3b
parent 33796
4854740e5277
child 34706
02cb08146888
--- a/pidgin/gtknotify.c	Fri Jun 28 23:14:54 2013 +0530
+++ b/pidgin/gtknotify.c	Sat Jun 29 00:14:56 2013 +0530
@@ -192,11 +192,10 @@
 			-1);
 
 	if (pounce_data != NULL) {
-		PurpleConversation *conv;
+		PurpleIMConversation *im;
 
-		conv = purple_conversation_new(PURPLE_CONV_TYPE_IM,
-				pounce_data->account, pounce_data->pouncee);
-		purple_conversation_present(conv);
+		im = purple_im_conversation_new(pounce_data->account, pounce_data->pouncee);
+		purple_conversation_present(PURPLE_CONVERSATION(im));
 	}
 }
 

mercurial