# HG changeset patch # User andrew.victor@mxit.com # Date 1320087639 0 # Node ID 2fdc668362f08ab5ea8d40189e8012fc1f271047 # Parent e323c2f84872998280d98d0b93aec271566ab21e Use the purple_group_get_name() accessor function. diff -r e323c2f84872 -r 2fdc668362f0 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Mon Oct 31 02:29:25 2011 +0000 +++ b/pidgin/gtkblist.c Mon Oct 31 19:00:39 2011 +0000 @@ -2113,7 +2113,7 @@ for (l = list; l != NULL; l = l->next) { purple_blist_request_add_buddy(account, l->data, - (group ? group->name : NULL), + (group ? purple_group_get_name(group) : NULL), alias); } } @@ -2535,7 +2535,7 @@ else { purple_blist_request_add_buddy(account, username, - (group ? group->name : NULL), + (group ? purple_group_get_name(group) : NULL), alias); } } @@ -6435,7 +6435,7 @@ text_color = selected ? NULL : theme_font_get_color_default(pair, NULL); text_font = theme_font_get_face_default(pair, ""); - esc = g_markup_escape_text(group->name, -1); + esc = g_markup_escape_text(purple_group_get_name(group), -1); if (text_color) { mark = g_strdup_printf("%s%s%s%s", text_color, text_font, @@ -6909,7 +6909,6 @@ groups_tree(void) { static GList *list = NULL; - char *tmp2; PurpleGroup *g; PurpleBlistNode *gnode; @@ -6929,8 +6928,7 @@ if (PURPLE_BLIST_NODE_IS_GROUP(gnode)) { g = (PurpleGroup *)gnode; - tmp2 = g->name; - list = g_list_append(list, tmp2); + list = g_list_append(list, (char *) purple_group_get_name(g)); } } } @@ -7265,7 +7263,7 @@ if (name != NULL) gtk_widget_grab_focus(data->alias_entry); - data->group_combo = pidgin_text_combo_box_entry_new(group ? group->name : NULL, groups_tree()); + data->group_combo = pidgin_text_combo_box_entry_new(group ? purple_group_get_name(group) : NULL, groups_tree()); pidgin_add_widget_to_vbox(GTK_BOX(vbox), _("_Group:"), data->chat_data.rq_data.sg, data->group_combo, TRUE, NULL); diff -r e323c2f84872 -r 2fdc668362f0 pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Mon Oct 31 02:29:25 2011 +0000 +++ b/pidgin/gtkdialogs.c Mon Oct 31 19:00:39 2011 +0000 @@ -1233,7 +1233,7 @@ text = g_strdup_printf( _("You are about to merge the group called %s into the group " - "called %s. Do you want to continue?"), source->name, new_name); + "called %s. Do you want to continue?"), purple_group_get_name(source), new_name); ggp = g_new(struct _PidginGroupMergeObject, 1); ggp->parent = source; @@ -1293,7 +1293,7 @@ g_return_if_fail(group != NULL); text = g_strdup_printf(_("You are about to remove the group %s and all its members from your buddy list. Do you want to continue?"), - group->name); + purple_group_get_name(group)); purple_request_action(group, NULL, _("Remove Group"), text, 0, NULL, NULL, NULL,