diff pidgin/gtkblist.c @ 15615:b74a3bec8dcb

Let's use the core function instead of using the uiops function directly when possible. This makes my 'Hide Conversations' plugin work.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 11 Feb 2007 01:40:04 +0000
parents 1dfa6945e13f
children a830f9756f23
line wrap: on
line diff
--- a/pidgin/gtkblist.c	Sat Feb 10 01:14:57 2007 +0000
+++ b/pidgin/gtkblist.c	Sun Feb 11 01:40:04 2007 +0000
@@ -302,7 +302,7 @@
 											   chat->account);
 
 	if (conv != NULL)
-		pidgin_conv_present_conversation(conv);
+		gaim_conversation_present(conv);
 
 	serv_join_chat(chat->account->gc, chat->components);
 }
@@ -3549,7 +3549,7 @@
 			convs = pidgin_conversations_find_unseen_list(GAIM_CONV_TYPE_IM,
 															PIDGIN_UNSEEN_TEXT, TRUE, 1);
 			if (convs) {
-				pidgin_conv_present_conversation((GaimConversation*)convs->data);
+				gaim_conversation_present((GaimConversation*)convs->data);
 				g_list_free(convs);
 			}
 			break;