# HG changeset patch # User Etan Reisner # Date 1138019487 0 # Node ID eb64b2b26e5681bef69706096ecc4b4ee437c63c # Parent 72300c551dc2ed9dd8fe4b506834ef17eb7a826d [gaim-migrate @ 15374] The last of the whitespace from that tree. committer: Tailor Script diff -r 72300c551dc2 -r eb64b2b26e56 src/protocols/sametime/sametime.c --- a/src/protocols/sametime/sametime.c Mon Jan 23 11:41:51 2006 +0000 +++ b/src/protocols/sametime/sametime.c Mon Jan 23 12:31:27 2006 +0000 @@ -1218,7 +1218,7 @@ so we use the blist-node-extended-menu signal to trigger this handler */ static void blist_node_menu_cb(GaimBlistNode *node, - GList **menu, struct mwGaimPluginData *pd) { + GList **menu, struct mwGaimPluginData *pd) { const char *owner; GaimGroup *group; GaimAccount *acct; @@ -1240,7 +1240,7 @@ if(gaim_group_on_account(group, acct)) { act = gaim_menu_action_new(_("Invite Group to Conference..."), GAIM_CALLBACK(blist_menu_group_invite), - pd, NULL); + pd, NULL); *menu = g_list_append(*menu, NULL); } #endif diff -r 72300c551dc2 -r eb64b2b26e56 src/protocols/yahoo/yahoo.c --- a/src/protocols/yahoo/yahoo.c Mon Jan 23 11:41:51 2006 +0000 +++ b/src/protocols/yahoo/yahoo.c Mon Jan 23 12:31:27 2006 +0000 @@ -2869,30 +2869,30 @@ if (yd->current_status == YAHOO_STATUS_INVISIBLE) { if (f->presence != YAHOO_PRESENCE_ONLINE) { act = gaim_menu_action_new(_("Appear Online"), - GAIM_CALLBACK(yahoo_presence_settings), - GINT_TO_POINTER(YAHOO_PRESENCE_ONLINE), - NULL); + GAIM_CALLBACK(yahoo_presence_settings), + GINT_TO_POINTER(YAHOO_PRESENCE_ONLINE), + NULL); m = g_list_append(m, act); } else if (f->presence != YAHOO_PRESENCE_DEFAULT) { act = gaim_menu_action_new(_("Appear Offline"), - GAIM_CALLBACK(yahoo_presence_settings), - GINT_TO_POINTER(YAHOO_PRESENCE_DEFAULT), - NULL); + GAIM_CALLBACK(yahoo_presence_settings), + GINT_TO_POINTER(YAHOO_PRESENCE_DEFAULT), + NULL); m = g_list_append(m, act); } } if (f->presence == YAHOO_PRESENCE_PERM_OFFLINE) { - act = gaim_menu_action_new( - _("Don't Appear Permanently Offline"), - GAIM_CALLBACK(yahoo_presence_settings), - GINT_TO_POINTER(YAHOO_PRESENCE_DEFAULT), NULL); + act = gaim_menu_action_new(_("Don't Appear Permanently Offline"), + GAIM_CALLBACK(yahoo_presence_settings), + GINT_TO_POINTER(YAHOO_PRESENCE_DEFAULT), + NULL); m = g_list_append(m, act); } else { act = gaim_menu_action_new(_("Appear Permanently Offline"), - GAIM_CALLBACK(yahoo_presence_settings), - GINT_TO_POINTER(YAHOO_PRESENCE_PERM_OFFLINE), - NULL); + GAIM_CALLBACK(yahoo_presence_settings), + GINT_TO_POINTER(YAHOO_PRESENCE_PERM_OFFLINE), + NULL); m = g_list_append(m, act); }