cpw.qulogic.gtk3: df5196ac: Remove some deprecated functions, withou...

qulogic at pidgin.im qulogic at pidgin.im
Sat Feb 20 02:13:22 EST 2010


-----------------------------------------------------------------
Revision: df5196ac4c45dfff9cad5768c27d4e1d46fbb2ab
Ancestor: 29d982e541ea6b39a87464070e556a7ff5e9e8e4
Author: qulogic at pidgin.im
Date: 2010-02-19T07:23:38
Branch: im.pidgin.cpw.qulogic.gtk3
URL: http://d.pidgin.im/viewmtn/revision/info/df5196ac4c45dfff9cad5768c27d4e1d46fbb2ab

Modified files:
        pidgin/gtkutils.c

ChangeLog: 

Remove some deprecated functions, without extra changes this time.

-------------- next part --------------
============================================================
--- pidgin/gtkutils.c	f2249c34c76983c63795b3b0109b20e57db1bcf7
+++ pidgin/gtkutils.c	6f61ca256426d8cd86de190e7aef627c0cf7bca1
@@ -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