diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-01-07 02:02:18 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-01-07 02:02:18 +0800 |
commit | 00d89fdac2c92ceeae3478713f6fc247841d3da7 (patch) | |
tree | 780bcf00829fc1bccad90ccdee387aa1bc160693 /calendar | |
parent | 82f7125f45269be8d2cded86d8c7fe37bd0364dc (diff) | |
download | gsoc2013-evolution-00d89fdac2c92ceeae3478713f6fc247841d3da7.tar.gz gsoc2013-evolution-00d89fdac2c92ceeae3478713f6fc247841d3da7.tar.zst gsoc2013-evolution-00d89fdac2c92ceeae3478713f6fc247841d3da7.zip |
Patch from Michael Monreal <michael.monreal@gmx.net>: Fix for bug #492188 (Use the new Tangoized icons instead of the deprecated ones from gnome-icon-theme)
M addressbook/gui/component/addressbook-view.c
M addressbook/ChangeLog
AM data/icons/hicolor_actions_16x16_mail-move.png
AM data/icons/hicolor_actions_16x16_mail-copy.png
AM data/icons/hicolor_actions_16x16_folder-move.png
M data/icons/Makefile.am
AM data/icons/hicolor_actions_16x16_folder-copy.png
M mail/em-folder-browser.c
M mail/ChangeLog
M mail/em-folder-tree.c
M mail/em-folder-view.c
M mail/message-list.c
M composer/ChangeLog
M composer/e-msg-composer.c
M ChangeLog
M calendar/gui/dialogs/comp-editor.c
M calendar/ChangeLog
svn path=/trunk/; revision=34769
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 9 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 80890db381..13918e0985 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,12 @@ +2008-01-06 Michael Monreal <michael.monreal@gmx.net> + + ** Fix for bug #492188 + + * gui/dialogs/comp-editor.c: + + Use the new Tangoized icons instead of deprecated icons from + gnome-icon-theme. + 2008-01-03 Suman Manjunath <msuman@novell.com> ** Fix for bug #270605 diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index ce2ae3b69a..6ddfdb6719 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -460,8 +460,8 @@ drop_popup_cancel(EPopup *ep, EPopupItem *item, void *data) } static EPopupItem drop_popup_menu[] = { - { E_POPUP_ITEM, "00.emc.02", N_("_Copy"), drop_popup_copy, NULL, "stock_mail-copy", 0 }, - { E_POPUP_ITEM, "00.emc.03", N_("_Move"), drop_popup_move, NULL, "stock_mail-move", 0 }, + { E_POPUP_ITEM, "00.emc.02", N_("_Copy"), drop_popup_copy, NULL, "mail-copy", 0 }, + { E_POPUP_ITEM, "00.emc.03", N_("_Move"), drop_popup_move, NULL, "mail-move", 0 }, { E_POPUP_BAR, "10.emc" }, { E_POPUP_ITEM, "99.emc.00", N_("Cancel _Drag"), drop_popup_cancel, NULL, NULL, 0 }, }; |