diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/e-address-popup.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index f00df91bb7..7b52ed6319 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2003-02-19 Chris Toshok <toshok@ximian.com> + + [ fix #38074 ] + * gui/component/e-address-popup.c (add_contacts_cb): first arg is + a GtkWidget. duh. + 2003-02-19 Ettore Perazzoli <ettore@ximian.com> * gui/contact-editor/Makefile.am (INCLUDES): Use $(evolutionuidir) diff --git a/addressbook/gui/component/e-address-popup.c b/addressbook/gui/component/e-address-popup.c index 39c51a3720..47cf6010fb 100644 --- a/addressbook/gui/component/e-address-popup.c +++ b/addressbook/gui/component/e-address-popup.c @@ -1002,7 +1002,7 @@ e_address_popup_cardify (EAddressPopup *pop, ECard *card) } static void -add_contacts_cb (EAddressPopup *pop) +add_contacts_cb (GtkWidget *button, EAddressPopup *pop) { if (pop->email && *pop->email) { if (pop->name && *pop->name) |