diff options
author | Chris Toshok <toshok@ximian.com> | 2001-08-09 00:52:06 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-08-09 00:52:06 +0800 |
commit | a55c9243b24d7c89559925b2a505fe9e4f9d0d54 (patch) | |
tree | daec05ebe80ef4d5f80e0e9e6301212e7ee7187a | |
parent | 20e74a2f3bd3c5d354861439ce23c9ff51e5dba4 (diff) | |
download | gsoc2013-evolution-a55c9243b24d7c89559925b2a505fe9e4f9d0d54.tar gsoc2013-evolution-a55c9243b24d7c89559925b2a505fe9e4f9d0d54.tar.gz gsoc2013-evolution-a55c9243b24d7c89559925b2a505fe9e4f9d0d54.tar.bz2 gsoc2013-evolution-a55c9243b24d7c89559925b2a505fe9e4f9d0d54.tar.lz gsoc2013-evolution-a55c9243b24d7c89559925b2a505fe9e4f9d0d54.tar.xz gsoc2013-evolution-a55c9243b24d7c89559925b2a505fe9e4f9d0d54.tar.zst gsoc2013-evolution-a55c9243b24d7c89559925b2a505fe9e4f9d0d54.zip |
call e_pixmap_update so we can use the same save/save-as pixmaps as the
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.
svn path=/trunk/; revision=11797
-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 * |