diff options
author | Milan Crha <mcrha@redhat.com> | 2010-09-29 17:20:13 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-09-29 17:20:13 +0800 |
commit | 07bc66e30c07f6181c355b31e6d5e923e9541248 (patch) | |
tree | ca17b8b407aa6c09098817b0c4a10524b5238506 | |
parent | 12149572ad522d6c7aec9b2917a2da5df41174f3 (diff) | |
download | gsoc2013-evolution-07bc66e30c07f6181c355b31e6d5e923e9541248.tar.gz gsoc2013-evolution-07bc66e30c07f6181c355b31e6d5e923e9541248.tar.zst gsoc2013-evolution-07bc66e30c07f6181c355b31e6d5e923e9541248.zip |
Bug #630294 - Shouldn't send invitation reply when has no organizer
-rw-r--r-- | plugins/itip-formatter/itip-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/itip-formatter/itip-view.c b/plugins/itip-formatter/itip-view.c index 6ade3cabe3..9cc641e4ee 100644 --- a/plugins/itip-formatter/itip-view.c +++ b/plugins/itip-formatter/itip-view.c @@ -2006,7 +2006,7 @@ itip_view_get_rsvp (ItipView *view) priv = view->priv; - return gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->rsvp_check)); + return priv->rsvp_show && gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->rsvp_check)); } void |