diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-editor.c | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index f218211573..7bc7b3115a 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2001-08-08 Chris Toshok <toshok@ximian.com> + * gui/contact-list-editor/e-contact-list-editor.c (create_ui): + call e_pixmap_update so we can use the same save/save-as pixmaps + as the contact editor. + +2001-08-08 Chris Toshok <toshok@ximian.com> + * gui/widgets/e-addressbook-reflow-adapter.c (open_card): new function, used by the context menu. (e_addressbook_reflow_adapter_right_click): put "Open" at the top diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c index b79ed5fd22..98845f8e8d 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -27,6 +27,7 @@ #include <bonobo/bonobo-ui-util.h> #include <gal/e-table/e-table-scrolled.h> #include <gal/widgets/e-unicode.h> +#include "shell/evolution-shell-component-utils.h" #include "e-contact-editor.h" #include "e-contact-list-editor.h" @@ -417,6 +418,13 @@ BonoboUIVerb verbs [] = { BONOBO_UI_VERB_END }; +static EPixmap pixmaps[] = { + E_PIXMAP ("/commands/ContactListEditorSave", "save-16.png"), + E_PIXMAP ("/commands/ContactListEditorSaveAs", "save-as-16.png"), + + E_PIXMAP_END +}; + static void create_ui (EContactListEditor *ce) { @@ -426,6 +434,8 @@ create_ui (EContactListEditor *ce) bonobo_ui_util_set_ui (ce->uic, EVOLUTION_DATADIR, "evolution-contact-list-editor.xml", "evolution-contact-list-editor"); + + e_pixmaps_update (ce->uic, pixmaps); } EContactListEditor * |