diff pidgin/gtkconv.c @ 16202:0973688f4b74

Word on the street is that we don't want things named pidginfoo_bar(), but pidgin_foo_bar() instead.
author Richard Laager <rlaager@wiktel.com>
date Mon, 16 Apr 2007 05:27:17 +0000
parents 247e421c4fa6
children 12e2ee612d5f
line wrap: on
line diff
--- a/pidgin/gtkconv.c	Mon Apr 16 05:07:21 2007 +0000
+++ b/pidgin/gtkconv.c	Mon Apr 16 05:27:17 2007 +0000
@@ -626,7 +626,7 @@
 
 		b = purple_find_buddy(account, name);
 		if (b != NULL)
-			pidgindialogs_remove_buddy(b);
+			pidgin_dialogs_remove_buddy(b);
 		else if (account != NULL && purple_account_is_connected(account))
 			purple_blist_request_add_buddy(account, (char *)name, NULL, NULL);
 	} else if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT) {
@@ -634,7 +634,7 @@
 
 		c = purple_blist_find_chat(account, name);
 		if (c != NULL)
-			pidgindialogs_remove_chat(c);
+			pidgin_dialogs_remove_chat(c);
 		else if (account != NULL && purple_account_is_connected(account))
 			purple_blist_request_add_chat(account, NULL, NULL, name);
 	}
@@ -968,7 +968,7 @@
 static void
 menu_new_conv_cb(gpointer data, guint action, GtkWidget *widget)
 {
-	pidgindialogs_im();
+	pidgin_dialogs_im();
 }
 
 static void
@@ -1239,13 +1239,13 @@
 
 		b = purple_find_buddy(account, name);
 		if (b != NULL)
-			pidgindialogs_alias_buddy(b);
+			pidgin_dialogs_alias_buddy(b);
 	} else if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT) {
 		PurpleChat *c;
 
 		c = purple_blist_find_chat(account, name);
 		if (c != NULL)
-			pidgindialogs_alias_chat(c);
+			pidgin_dialogs_alias_chat(c);
 	}
 }
 
@@ -1411,7 +1411,7 @@
 	if(!real_who)
 		return;
 
-	pidgindialogs_im_with_user(account, real_who);
+	pidgin_dialogs_im_with_user(account, real_who);
 
 	g_free(real_who);
 }
@@ -1526,7 +1526,7 @@
 	b       = purple_find_buddy(account, name);
 
 	if (b != NULL)
-		pidgindialogs_remove_buddy(b);
+		pidgin_dialogs_remove_buddy(b);
 	else if (account != NULL && purple_account_is_connected(account))
 		purple_blist_request_add_buddy(account, name, NULL, NULL);
 
@@ -5697,7 +5697,7 @@
 	}
 
 	/* If smileys are off, return false */
-	if (pidginthemes_smileys_disabled())
+	if (pidgin_themes_smileys_disabled())
 		return FALSE;
 
 	/* If possible add this smiley to the current theme.
@@ -6024,7 +6024,7 @@
 	}
 
 	if (fields & PIDGIN_CONV_SMILEY_THEME)
-		pidginthemes_smiley_themeize(PIDGIN_CONVERSATION(conv)->imhtml);
+		pidgin_themes_smiley_themeize(PIDGIN_CONVERSATION(conv)->imhtml);
 
 	if ((fields & PIDGIN_CONV_COLORIZE_TITLE) ||
 			(fields & PIDGIN_CONV_SET_TITLE))