pidgin: 4f5734b3: *** Plucked rev df5196ac4c45dfff9cad5768...

qulogic at pidgin.im qulogic at pidgin.im
Sat Feb 20 02:12:46 EST 2010


-----------------------------------------------------------------
Revision: 4f5734b3a2f0e76f256272a49c0141e50f379be3
Ancestor: d24e3e43792c97ead68b3833f45ea35c4de8128c
Author: qulogic at pidgin.im
Date: 2010-02-20T04:53:17
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/4f5734b3a2f0e76f256272a49c0141e50f379be3

Modified files:
        pidgin/gtkutils.c

ChangeLog: 

*** Plucked rev df5196ac4c45dfff9cad5768c27d4e1d46fbb2ab (qulogic at pidgin.im):
Remove some deprecated functions, without extra changes this time.


-------------- next part --------------
============================================================
--- pidgin/gtkutils.c	ed881f0b40376414d8293e007cb33ce25aa025f4
+++ pidgin/gtkutils.c	3e605a2864d7b5bb44049967531d847e89962408
@@ -406,13 +406,13 @@ pidgin_pixbuf_button_from_stock(const ch
 	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);


More information about the Commits mailing list