aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-05-18 04:18:01 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-05-18 04:18:01 +0800
commita48a529f73db4ef16fe3e59fa91299fbf710820c (patch)
treebf7eefeea14939cc2b893a3e538a18aeddcb0714 /addressbook/gui/contact-list-editor
parent9324aa08705aa032c34efeee9bd1d3f3ae77b599 (diff)
downloadgsoc2013-evolution-a48a529f73db4ef16fe3e59fa91299fbf710820c.tar
gsoc2013-evolution-a48a529f73db4ef16fe3e59fa91299fbf710820c.tar.gz
gsoc2013-evolution-a48a529f73db4ef16fe3e59fa91299fbf710820c.tar.bz2
gsoc2013-evolution-a48a529f73db4ef16fe3e59fa91299fbf710820c.tar.lz
gsoc2013-evolution-a48a529f73db4ef16fe3e59fa91299fbf710820c.tar.xz
gsoc2013-evolution-a48a529f73db4ef16fe3e59fa91299fbf710820c.tar.zst
gsoc2013-evolution-a48a529f73db4ef16fe3e59fa91299fbf710820c.zip
Change E_PIXMAP size args over to E_ICON_SIZE_* values.
2004-05-17 Jeffrey Stedfast <fejj@novell.com> * gui/contact-list-editor/e-contact-list-editor.c: Change E_PIXMAP size args over to E_ICON_SIZE_* values. svn path=/trunk/; revision=25939
Diffstat (limited to 'addressbook/gui/contact-list-editor')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.c18
1 files changed, 9 insertions, 9 deletions
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 17494aeccb..0527432d3d 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c
+++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
@@ -518,18 +518,18 @@ BonoboUIVerb verbs [] = {
};
static EPixmap pixmaps[] = {
- E_PIXMAP ("/commands/ContactListEditorSave", "stock_save", 16),
- E_PIXMAP ("/commands/ContactListEditorSaveClose", "stock_save", 16),
- E_PIXMAP ("/commands/ContactListEditorSaveAs", "stock_save_as", 16),
+ E_PIXMAP ("/commands/ContactListEditorSave", "stock_save", E_ICON_SIZE_MENU),
+ E_PIXMAP ("/commands/ContactListEditorSaveClose", "stock_save", E_ICON_SIZE_MENU),
+ E_PIXMAP ("/commands/ContactListEditorSaveAs", "stock_save_as", E_ICON_SIZE_MENU),
- E_PIXMAP ("/commands/ContactListEditorDelete", "stock_delete", 16),
+ E_PIXMAP ("/commands/ContactListEditorDelete", "stock_delete", E_ICON_SIZE_MENU),
#if 0 /* Envelope printing is disabled for Evolution 1.0. */
- E_PIXMAP ("/commands/ContactListEditorPrint", "stock_print", 16),
- E_PIXMAP ("/commands/ContactListEditorPrintEnvelope", "stock_print", 16),
+ E_PIXMAP ("/commands/ContactListEditorPrint", "stock_print", E_ICON_SIZE_MENU),
+ E_PIXMAP ("/commands/ContactListEditorPrintEnvelope", "stock_print", E_ICON_SIZE_MENU),
#endif
- E_PIXMAP ("/Toolbar/ContactListEditorSaveClose", "stock_save", 24),
- E_PIXMAP ("/Toolbar/ContactListEditorDelete", "stock_delete", 24),
- E_PIXMAP ("/Toolbar/ContactListEditorPrint", "stock_print", 24),
+ E_PIXMAP ("/Toolbar/ContactListEditorSaveClose", "stock_save", E_ICON_SIZE_LARGE_TOOLBAR),
+ E_PIXMAP ("/Toolbar/ContactListEditorDelete", "stock_delete", E_ICON_SIZE_LARGE_TOOLBAR),
+ E_PIXMAP ("/Toolbar/ContactListEditorPrint", "stock_print", E_ICON_SIZE_LARGE_TOOLBAR),
E_PIXMAP_END
};