comparison src/conversation.c @ 756:c5f455b6f79a

[gaim-migrate @ 766] Fixed a small bug with text not always displaying when it should. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Thu, 24 Aug 2000 17:55:04 +0000
parents bcae3ff49680
children c075cf268129
comparison
equal deleted inserted replaced
755:16c2682b5678 756:c5f455b6f79a
424 sprintf(debug_buff,_("Removing '%s' from buddylist.\n"), c->name); 424 sprintf(debug_buff,_("Removing '%s' from buddylist.\n"), c->name);
425 debug_print(debug_buff); 425 debug_print(debug_buff);
426 remove_buddy(find_group_by_buddy(c->name), find_buddy(c->name)); 426 remove_buddy(find_group_by_buddy(c->name), find_buddy(c->name));
427 build_edit_tree(); 427 build_edit_tree();
428 gtk_widget_destroy(c->add_button); 428 gtk_widget_destroy(c->add_button);
429 c->add_button = picture_button(c->window, NULL, gnome_add_xpm); 429 c->add_button = picture_button2(c->window, _("Add"), gnome_add_xpm, display_options & OPT_DISP_CONV_SHOW_TEXT);
430 gtk_signal_connect(GTK_OBJECT(c->add_button), "clicked", GTK_SIGNAL_FUNC(add_callback), c); 430 gtk_signal_connect(GTK_OBJECT(c->add_button), "clicked", GTK_SIGNAL_FUNC(add_callback), c);
431 gtk_box_pack_end(GTK_BOX(parent), c->add_button, FALSE, FALSE, 0); 431 gtk_box_pack_end(GTK_BOX(parent), c->add_button, FALSE, FALSE, 0);
432 gtk_box_reorder_child(GTK_BOX(parent), c->add_button, 1); 432 gtk_box_reorder_child(GTK_BOX(parent), c->add_button, 1);
433 gtk_widget_show(c->add_button); 433 gtk_widget_show(c->add_button);
434 } 434 }