changeset 29442:33945b987e15

Remove some stray debugging printf()s.
author Richard Laager <rlaager@wiktel.com>
date Mon, 17 Nov 2008 08:04:36 +0000
parents 086b26f60913
children 7cc66981f029
files pidgin/gtkblist.c
diffstat 1 files changed, 2 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkblist.c	Mon Nov 17 08:00:25 2008 +0000
+++ b/pidgin/gtkblist.c	Mon Nov 17 08:04:36 2008 +0000
@@ -7829,29 +7829,18 @@
 			gc = purple_account_get_connection(account);
 			plugin = gc && PURPLE_CONNECTION_IS_CONNECTED(gc) ? gc->prpl : NULL;
 
-printf("HERE1\n");
-if (plugin){
-	printf("HERE1.1\n");
-	if (PURPLE_PLUGIN_PROTOCOL_INFO(plugin)) {
-		printf("HERE1.2: %s\n", purple_account_get_username(account));
-		if (PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl_info, get_moods)) {
-			printf("HERE1.3\n");
-		}
-	}
-}
 			if (plugin &&
 			    (prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(plugin)) &&
 			    PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl_info, get_moods))
 			{
-printf("HERE2\n");
 				for (types = purple_account_get_status_types(account);
 				     types != NULL ; types = types->next)
 				{
 					PurpleStatusType *type = types->data;
-printf("HERE3\n");
+
 					if (strcmp(purple_status_type_get_id(type), "mood") != 0)
 						continue;
-printf("HERE4\n");
+
 					menuitem = gtk_menu_item_new_with_mnemonic(_("Set _Mood..."));
 					g_signal_connect(G_OBJECT(menuitem), "activate",
 						         G_CALLBACK(set_mood_cb), account);