comparison src/gtkaccount.c @ 12286:255e6912607b

[gaim-migrate @ 14590] Mostly whitespace, but a couple small typo fixes, and an A;B -> B;A; swap to be consistent in plugins/notify.c committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Thu, 01 Dec 2005 21:13:48 +0000
parents af257d8679fe
children 0bde9a3cb93d
comparison
equal deleted inserted replaced
12285:af257d8679fe 12286:255e6912607b
2529 2529
2530 static char * 2530 static char *
2531 make_info(GaimAccount *account, GaimConnection *gc, const char *remote_user, 2531 make_info(GaimAccount *account, GaimConnection *gc, const char *remote_user,
2532 const char *id, const char *alias, const char *msg) 2532 const char *id, const char *alias, const char *msg)
2533 { 2533 {
2534 return g_strdup_printf(_("%s%s%s%s has made %s his or her buddy%s%s."), 2534 return g_strdup_printf(_("%s%s%s%s has made %s his or her buddy%s%s"),
2535 remote_user, 2535 remote_user,
2536 (alias != NULL ? " (" : ""), 2536 (alias != NULL ? " (" : ""),
2537 (alias != NULL ? alias : ""), 2537 (alias != NULL ? alias : ""),
2538 (alias != NULL ? ")" : ""), 2538 (alias != NULL ? ")" : ""),
2539 (id != NULL 2539 (id != NULL
2565 2565
2566 gaim_notify_info(NULL, NULL, buffer, NULL); 2566 gaim_notify_info(NULL, NULL, buffer, NULL);
2567 2567
2568 g_free(buffer); 2568 g_free(buffer);
2569 } 2569 }
2570
2571 2570
2572 static void 2571 static void
2573 gaim_gtk_accounts_request_add(GaimAccount *account, const char *remote_user, 2572 gaim_gtk_accounts_request_add(GaimAccount *account, const char *remote_user,
2574 const char *id, const char *alias, 2573 const char *id, const char *alias,
2575 const char *msg) 2574 const char *msg)