diff options
author | Tobias Mueller <tobiasmue@svn.gnome.org> | 2009-02-22 20:19:49 +0800 |
---|---|---|
committer | Tobias Mueller <tobiasmue@src.gnome.org> | 2009-02-22 20:19:49 +0800 |
commit | af5853c4de36ba3ea67b92c729f5101849c5a8d2 (patch) | |
tree | 864463f04987a83222d489923fa2922ad78438bd | |
parent | d72e84d6bc8e5aded3704e78a4f41e11ab2d5ebe (diff) | |
download | gsoc2013-evolution-af5853c4de36ba3ea67b92c729f5101849c5a8d2.tar.gz gsoc2013-evolution-af5853c4de36ba3ea67b92c729f5101849c5a8d2.tar.zst gsoc2013-evolution-af5853c4de36ba3ea67b92c729f5101849c5a8d2.zip |
Make it use the proper action. Patch by Paweł Zembrzuski
2009-02-22 Tobias Mueller <tobiasmue@svn.gnome.org>
* gui/e-itip-control.c (refresh_options_object):
Make it use the proper action. Patch by Paweł Zembrzuski
** Fixes bug 566556
svn path=/trunk/; revision=37308
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 1abebef1a2..f70dbacae6 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2009-02-22 Tobias Mueller <tobiasmue@svn.gnome.org> + + * gui/e-itip-control.c (refresh_options_object): + Make it use the proper action. Patch by Paweł Zembrzuski + + ** Fixes bug 566556 + 2009-02-20 Milan Crha <mcrha@redhat.com> ** Fix for bug #567949 diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 0583a4fefe..157afc6018 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -2435,7 +2435,7 @@ refresh_options_object (EItipControl *itip, GtkHTML *html, GtkHTMLEmbedded *eb) menu = gtk_menu_new (); add_option (itip, menu, _("Send Latest Information"), 'S'); - priv->action = 'R'; + priv->action = 'S'; gtk_option_menu_set_menu (GTK_OPTION_MENU (option), menu); |