# HG changeset patch # User Elliott Sales de Andrade # Date 1266564218 0 # Node ID 47636f9ad624bfc233378f776b06e9a58a650930 # Parent ebe1baa9522c4c26a0a55dbaeeb9ff7231fcd708 Remove some deprecated functions, without extra changes this time. diff -r ebe1baa9522c -r 47636f9ad624 pidgin/gtkutils.c --- a/pidgin/gtkutils.c Fri Feb 19 07:21:14 2010 +0000 +++ b/pidgin/gtkutils.c Fri Feb 19 07:23:38 2010 +0000 @@ -406,13 +406,13 @@ gtk_container_add(GTK_CONTAINER(button), bbox); if (icon) { - gtk_box_pack_start_defaults(GTK_BOX(bbox), ibox); + gtk_box_pack_start(GTK_BOX(bbox), ibox, TRUE, TRUE, 0); image = gtk_image_new_from_stock(icon, GTK_ICON_SIZE_BUTTON); gtk_box_pack_end(GTK_BOX(ibox), image, FALSE, TRUE, 0); } if (text) { - gtk_box_pack_start_defaults(GTK_BOX(bbox), lbox); + gtk_box_pack_start(GTK_BOX(bbox), lbox, TRUE, TRUE, 0); label = gtk_label_new(NULL); gtk_label_set_text_with_mnemonic(GTK_LABEL(label), text); gtk_label_set_mnemonic_widget(GTK_LABEL(label), button);