# HG changeset patch # User Evan Schoenberg # Date 1165722275 0 # Node ID b5a8193edb627906daabc0106a9e61830aca4ea8 # Parent 99e636fd0a477943c344fe62107d34063f396d39 [gaim-migrate @ 17934] I forgot to add section breaks in the appropriate places in oscar in [17929] committer: Tailor Script diff -r 99e636fd0a47 -r b5a8193edb62 libgaim/protocols/oscar/oscar.c --- a/libgaim/protocols/oscar/oscar.c Sun Dec 10 03:01:42 2006 +0000 +++ b/libgaim/protocols/oscar/oscar.c Sun Dec 10 03:44:35 2006 +0000 @@ -2613,6 +2613,7 @@ gaim_notify_user_info_add_pair(user_info, _("UIN"), who); gaim_notify_user_info_add_pair(user_info, _("Status"), statusmsg); + gaim_notify_user_info_add_section_break(user_info); gaim_notify_user_info_add_pair(user_info, NULL, g_strjoinv("
", splitmsg)); g_free(statusmsg); @@ -2848,6 +2849,7 @@ g_free(tmp); if (away_utf8 != NULL) { tmp = gaim_str_sub_away_formatters(away_utf8, gaim_account_get_username(account)); + gaim_notify_user_info_add_section_break(user_info); oscar_user_info_add_pair(user_info, NULL, tmp); g_free(tmp); g_free(away_utf8); @@ -2861,6 +2863,7 @@ g_free(tmp); if (info_utf8 != NULL) { tmp = gaim_str_sub_away_formatters(info_utf8, gaim_account_get_username(account)); + gaim_notify_user_info_add_section_break(user_info); oscar_user_info_add_pair(user_info, _("Profile"), tmp); g_free(tmp); g_free(info_utf8); @@ -3703,8 +3706,7 @@ } oscar_user_info_convert_and_add(account, user_info, _("Additional Information"), info->info); - -/* g_string_append_printf(str, "
"); */ + gaim_notify_user_info_add_section_break(user_info); if ((info->homeaddr && (info->homeaddr[0])) || (info->homecity && info->homecity[0]) || (info->homestate && info->homestate[0]) || (info->homezip && info->homezip[0])) { tmp = g_string_sized_new(100); @@ -3714,7 +3716,8 @@ oscar_string_convert_and_append(account, tmp, "\n
", _("Zip Code"), info->homezip); gaim_notify_user_info_add_pair(user_info, _("Home Address"), tmp->str); - + gaim_notify_user_info_add_section_break(user_info); + g_string_free(tmp, TRUE); } if ((info->workaddr && info->workaddr[0]) || (info->workcity && info->workcity[0]) || (info->workstate && info->workstate[0]) || (info->workzip && info->workzip[0])) { @@ -3726,7 +3729,8 @@ oscar_string_convert_and_append(account, tmp, "\n
", _("Zip Code"), info->workzip); gaim_notify_user_info_add_pair(user_info, _("Work Address"), tmp->str); - + gaim_notify_user_info_add_section_break(user_info); + g_string_free(tmp, TRUE); } if ((info->workcompany && info->workcompany[0]) || (info->workdivision && info->workdivision[0]) || (info->workposition && info->workposition[0]) || (info->workwebpage && info->workwebpage[0])) {