diff options
author | Chris Toshok <toshok@ximian.com> | 2003-04-30 05:36:19 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-04-30 05:36:19 +0800 |
commit | 2ea38f692af82faae90c2f0c65c4cd88970664e1 (patch) | |
tree | c60ed41689f0e176a9fef9960d245d21ed58ca24 | |
parent | 119759ca6d331bb8d527b0e271aac7023cc8726f (diff) | |
download | gsoc2013-evolution-2ea38f692af82faae90c2f0c65c4cd88970664e1.tar gsoc2013-evolution-2ea38f692af82faae90c2f0c65c4cd88970664e1.tar.gz gsoc2013-evolution-2ea38f692af82faae90c2f0c65c4cd88970664e1.tar.bz2 gsoc2013-evolution-2ea38f692af82faae90c2f0c65c4cd88970664e1.tar.lz gsoc2013-evolution-2ea38f692af82faae90c2f0c65c4cd88970664e1.tar.xz gsoc2013-evolution-2ea38f692af82faae90c2f0c65c4cd88970664e1.tar.zst gsoc2013-evolution-2ea38f692af82faae90c2f0c65c4cd88970664e1.zip |
[ fixes bug #41211 ] call e_button_new_with_stock_icon to create our
2003-04-29 Chris Toshok <toshok@ximian.com>
[ fixes bug #41211 ]
* gui/component/e-address-popup.c (e_address_popup_no_matches):
call e_button_new_with_stock_icon to create our button and give it
the right icon.
svn path=/trunk/; revision=21023
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/component/e-address-popup.c | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 22ee7283e6..21d5f3b4e5 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2003-04-29 Chris Toshok <toshok@ximian.com> + + [ fixes bug #41211 ] + * gui/component/e-address-popup.c (e_address_popup_no_matches): + call e_button_new_with_stock_icon to create our button and give it + the right icon. + 2003-04-29 Gilbert Fang <gilbert.fang@sun.com> * tools/evolution-addressbook-export-list-cards.c diff --git a/addressbook/gui/component/e-address-popup.c b/addressbook/gui/component/e-address-popup.c index 8d3adb6446..0b5ec97185 100644 --- a/addressbook/gui/component/e-address-popup.c +++ b/addressbook/gui/component/e-address-popup.c @@ -1025,7 +1025,8 @@ e_address_popup_no_matches (EAddressPopup *pop) g_return_if_fail (pop && E_IS_ADDRESS_POPUP (pop)); - b = gtk_button_new_with_label (_("Add to Contacts")); + b = e_button_new_with_stock_icon (_("Add to Contacts"), "gtk-add"); + gtk_box_pack_start (GTK_BOX (pop->main_vbox), b, TRUE, TRUE, 0); g_signal_connect (b, "clicked", |