diff options
-rw-r--r-- | addressbook/ChangeLog | 9 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-factory.c | 4 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook.c | 3 |
3 files changed, 13 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 21d85de22e..4084e00a69 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,12 @@ +2002-04-04 Ettore Perazzoli <ettore@ximian.com> + + * gui/component/addressbook.c: Remove AddressbookConfig, + ContactNew, ContactNewList EPixmap entries. + + * gui/component/addressbook-factory.c (main): Print out a + debugging message just before the main loop starts, for debugging + purposes. + 2002-04-02 Dan Winship <danw@ximian.com> * backend/ebook/e-card-simple.h: Fix spelling of diff --git a/addressbook/gui/component/addressbook-factory.c b/addressbook/gui/component/addressbook-factory.c index a5467d1309..6f675894e0 100644 --- a/addressbook/gui/component/addressbook-factory.c +++ b/addressbook/gui/component/addressbook-factory.c @@ -61,6 +61,8 @@ main (int argc, char **argv) { bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); textdomain (PACKAGE); + + free (malloc (5)); init_corba (&argc, argv); @@ -98,6 +100,8 @@ main (int argc, char **argv) gtk_widget_push_visual (gdk_rgb_get_visual ()); gtk_widget_push_colormap (gdk_rgb_get_cmap ()); + g_print ("Evolution Addressbook up and running\n"); + bonobo_main (); return 0; diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 02428c1350..b70b9952bb 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -374,10 +374,7 @@ static EPixmap pixmaps [] = { E_PIXMAP ("/menu/EditPlaceholder/Edit/ContactDelete", "evolution-trash-mini.png"), E_PIXMAP ("/menu/Tools/ComponentPlaceholder/ToolSearch", "search-16.png"), - E_PIXMAP ("/menu/Tools/ComponentPlaceholder/AddressbookConfig", "configure_16_addressbook.xpm"), - E_PIXMAP ("/Toolbar/ContactNew", "new_contact.xpm"), - E_PIXMAP ("/Toolbar/ContactNewList", "all_contacts.xpm"), E_PIXMAP ("/Toolbar/ContactsPrint", "buttons/print.png"), E_PIXMAP ("/Toolbar/ContactDelete", "buttons/delete-message.png"), |