diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-09-13 00:10:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-09-13 00:10:25 +0800 |
commit | 94344e1efab2bf7839a2f51c0e63aa690d346535 (patch) | |
tree | 7d8b20ae92c619ed1773837bdfa39988571a0fb7 /calendar/gui | |
parent | ec548e468663fddc72e361029846162699c766f1 (diff) | |
download | gsoc2013-evolution-94344e1efab2bf7839a2f51c0e63aa690d346535.tar.gz gsoc2013-evolution-94344e1efab2bf7839a2f51c0e63aa690d346535.tar.zst gsoc2013-evolution-94344e1efab2bf7839a2f51c0e63aa690d346535.zip |
** Fixes bug #476040
2007-09-12 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #476040
* calendar/gui/e-day-view.c:
* calendar/gui/e-week-view.c:
* calendar/gui/dialogs/comp-editor.c:
* composer/e-msg-composer.c:
* composer/e-msg-composer-attachment-bar.c:
* mail/em-folder-browser.c:
* mail/message-list.c:
* widgets/misc/e-attachment-bar.c:
Use "mail-attachment" icon instead of "stock_attach".
Use "mail-attachment" icon for unknown attachment types.
svn path=/trunk/; revision=34240
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 6 | ||||
-rw-r--r-- | calendar/gui/e-day-view.c | 4 | ||||
-rw-r--r-- | calendar/gui/e-week-view.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 4ff5055110..dec56852c7 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -1486,8 +1486,8 @@ static BonoboUIVerb verbs [] = { }; static EPixmap pixmaps[] = { - E_PIXMAP ("/Toolbar/InsertAttachments", "stock_attach", E_ICON_SIZE_LARGE_TOOLBAR), - E_PIXMAP ("/menu/Insert/Attachments/InsertAttachments", "stock_attach", E_ICON_SIZE_MENU), + E_PIXMAP ("/Toolbar/InsertAttachments", "mail-attachment", E_ICON_SIZE_LARGE_TOOLBAR), + E_PIXMAP ("/menu/Insert/Attachments/InsertAttachments", "mail-attachment", E_ICON_SIZE_MENU), E_PIXMAP_END }; @@ -1546,7 +1546,7 @@ setup_widgets (CompEditor *editor) gtk_misc_set_alignment (GTK_MISC (priv->attachment_expander_num), 1.0, 0.5); expander_hbox = gtk_hbox_new (FALSE, 0); - attachment_pixbuf = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); + attachment_pixbuf = e_icon_factory_get_icon ("mail-attachment", E_ICON_SIZE_MENU); priv->attachment_expander_icon = gtk_image_new_from_pixbuf (attachment_pixbuf); gtk_misc_set_alignment (GTK_MISC (priv->attachment_expander_icon), 1, 0.5); gtk_widget_set_size_request (priv->attachment_expander_icon, 100, -1); diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index d081e620fb..2d8d7a6c9c 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -1419,7 +1419,7 @@ e_day_view_realize (GtkWidget *widget) day_view->recurrence_icon = e_icon_factory_get_icon ("stock_refresh", E_ICON_SIZE_MENU); day_view->timezone_icon = e_icon_factory_get_icon ("stock_timezone", E_ICON_SIZE_MENU); day_view->meeting_icon = e_icon_factory_get_icon ("stock_people", E_ICON_SIZE_MENU); - day_view->attach_icon = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); + day_view->attach_icon = e_icon_factory_get_icon ("mail-attachment", E_ICON_SIZE_MENU); /* Set the canvas item colors. */ @@ -1493,7 +1493,7 @@ e_day_view_realize (GtkWidget *widget) day_view->recurrence_icon = e_icon_factory_get_icon ("stock_refresh", E_ICON_SIZE_MENU); day_view->timezone_icon = e_icon_factory_get_icon ("stock_timezone", E_ICON_SIZE_MENU); day_view->meeting_icon = e_icon_factory_get_icon ("stock_people", E_ICON_SIZE_MENU); - day_view->attach_icon = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); + day_view->attach_icon = e_icon_factory_get_icon ("mail-attachment", E_ICON_SIZE_MENU); /* Set the canvas item colors. */ diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index b054130e4a..4df59338a6 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -693,7 +693,7 @@ e_week_view_realize (GtkWidget *widget) week_view->reminder_icon = e_icon_factory_get_icon ("stock_bell", E_ICON_SIZE_MENU); week_view->recurrence_icon = e_icon_factory_get_icon ("stock_refresh", E_ICON_SIZE_MENU); week_view->timezone_icon = e_icon_factory_get_icon ("stock_timezone", E_ICON_SIZE_MENU); - week_view->attach_icon = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); + week_view->attach_icon = e_icon_factory_get_icon ("mail-attachment", E_ICON_SIZE_MENU); week_view->meeting_icon = e_icon_factory_get_icon ("stock_people", E_ICON_SIZE_MENU); } |