# HG changeset patch # User Richard Laager # Date 1181185900 0 # Node ID 0c7e3e81c434511de6cb0222a798aeb8efd97139 # Parent 0c70c55506cf409d1954d44e70cc67941099f28f PIDGIN_STOCK_TOOLBAR_INSERT isn't defined. I'm #if 0'ing this so it'll compile so I can work. diff -r 0c70c55506cf -r 0c7e3e81c434 pidgin/gtkimhtmltoolbar.c --- a/pidgin/gtkimhtmltoolbar.c Thu Jun 07 03:10:21 2007 +0000 +++ b/pidgin/gtkimhtmltoolbar.c Thu Jun 07 03:11:40 2007 +0000 @@ -1151,8 +1151,10 @@ gtk_button_set_relief(GTK_BUTTON(insert_button), GTK_RELIEF_NONE); bbox = gtk_hbox_new(FALSE, 3); gtk_container_add(GTK_CONTAINER(insert_button), bbox); +#if 0 image = gtk_image_new_from_stock(PIDGIN_STOCK_TOOLBAR_INSERT, gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_EXTRA_SMALL)); gtk_box_pack_start(GTK_BOX(bbox), image, FALSE, FALSE, 0); +#endif label = gtk_label_new_with_mnemonic(_("_Insert")); gtk_box_pack_start(GTK_BOX(bbox), label, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox), insert_button, FALSE, FALSE, 0);