aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/component/e-address-popup.c3
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",