diff options
author | Milan Crha <mcrha@redhat.com> | 2014-02-14 00:11:47 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-02-14 00:12:31 +0800 |
commit | 0d52e3157191ff28b1b7426691973610d3752cb8 (patch) | |
tree | fa129038870db986570a399ceb25089146d0ba7a /mail/e-mail-reader.c | |
parent | 9e28ee3baffa3afc475da07e831ed9c17b44ccc3 (diff) | |
download | gsoc2013-evolution-0d52e3157191ff28b1b7426691973610d3752cb8.tar gsoc2013-evolution-0d52e3157191ff28b1b7426691973610d3752cb8.tar.gz gsoc2013-evolution-0d52e3157191ff28b1b7426691973610d3752cb8.tar.bz2 gsoc2013-evolution-0d52e3157191ff28b1b7426691973610d3752cb8.tar.lz gsoc2013-evolution-0d52e3157191ff28b1b7426691973610d3752cb8.tar.xz gsoc2013-evolution-0d52e3157191ff28b1b7426691973610d3752cb8.tar.zst gsoc2013-evolution-0d52e3157191ff28b1b7426691973610d3752cb8.zip |
e_menu_tool_action_new: Remove unused stock_id parameter
Diffstat (limited to 'mail/e-mail-reader.c')
-rw-r--r-- | mail/e-mail-reader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c index 815e041cf4..f82baff928 100644 --- a/mail/e-mail-reader.c +++ b/mail/e-mail-reader.c @@ -3769,7 +3769,7 @@ e_mail_reader_init (EMailReader *reader, menu_tool_action = e_menu_tool_action_new ( "mail-forward", _("_Forward"), - _("Forward the selected message to someone"), NULL); + _("Forward the selected message to someone")); gtk_action_set_icon_name ( GTK_ACTION (menu_tool_action), "mail-forward"); @@ -3789,7 +3789,7 @@ e_mail_reader_init (EMailReader *reader, * either of those, without too strongly implying one or the other. */ menu_tool_action = e_menu_tool_action_new ( "mail-reply-group", _("Group Reply"), - _("Reply to the mailing list, or to all recipients"), NULL); + _("Reply to the mailing list, or to all recipients")); gtk_action_set_icon_name ( GTK_ACTION (menu_tool_action), "mail-reply-all"); |