diff pidgin/gtkblist.c @ 15502:6fde15c1dcfc

pidginconv to pidgin_conv
author Sean Egan <seanegan@gmail.com>
date Sat, 03 Feb 2007 07:55:15 +0000
parents d75099d2567e
children 762b6547adf9
line wrap: on
line diff
--- a/pidgin/gtkblist.c	Sat Feb 03 07:23:11 2007 +0000
+++ b/pidgin/gtkblist.c	Sat Feb 03 07:55:15 2007 +0000
@@ -301,7 +301,7 @@
 											   chat->account);
 
 	if (conv != NULL)
-		pidginconv_present_conversation(conv);
+		pidgin_conv_present_conversation(conv);
 
 	serv_join_chat(chat->account->gc, chat->components);
 }
@@ -3075,7 +3075,7 @@
 		GaimPresence *p;
 		if(conv != NULL) {
 			PidginConversation *gtkconv = PIDGIN_CONVERSATION(conv);
-			if(gtkconv != NULL && pidginconv_is_hidden(gtkconv) && size == GAIM_STATUS_ICON_SMALL) {
+			if(gtkconv != NULL && pidgin_conv_is_hidden(gtkconv) && size == GAIM_STATUS_ICON_SMALL) {
 				return gtk_widget_render_icon (GTK_WIDGET(gtkblist->treeview), PIDGIN_STOCK_STATUS_MESSAGE,
 							       icon_size, "GtkTreeView");
 			}
@@ -3148,7 +3148,7 @@
 
 	if(conv != NULL) {
 		gtkconv = PIDGIN_CONVERSATION(conv);
-		if(gtkconv != NULL && pidginconv_is_hidden(gtkconv)) {
+		if(gtkconv != NULL && pidgin_conv_is_hidden(gtkconv)) {
 			hidden_conv = TRUE;
 		}
 	}
@@ -3500,7 +3500,7 @@
 			convs = pidgin_conversations_find_unseen_list(GAIM_CONV_TYPE_IM,
 															GAIM_UNSEEN_TEXT, TRUE, 1);
 			if (convs) {
-				pidginconv_present_conversation((GaimConversation*)convs->data);
+				pidgin_conv_present_conversation((GaimConversation*)convs->data);
 				g_list_free(convs);
 			}
 			break;