diff options
author | JP Rosevear <jpr@novell.com> | 2004-08-28 04:35:42 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-08-28 04:35:42 +0800 |
commit | aaa2eab453d0576143a66fcd7c488249dd0ba05c (patch) | |
tree | 589f4d5983d40667e74085efbfb83d918998246e /calendar | |
parent | d2836e1de9a73c4dbf7417e62bb27a932a7c8c3f (diff) | |
download | gsoc2013-evolution-aaa2eab453d0576143a66fcd7c488249dd0ba05c.tar.gz gsoc2013-evolution-aaa2eab453d0576143a66fcd7c488249dd0ba05c.tar.zst gsoc2013-evolution-aaa2eab453d0576143a66fcd7c488249dd0ba05c.zip |
bump version, requirements
2004-08-27 JP Rosevear <jpr@novell.com>
* configure.in: bump version, requirements
svn path=/trunk/; revision=27050
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/e-itip-control.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 983b56b4e0..ac12316988 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -2192,16 +2192,20 @@ rsvp_clicked_cb (GtkWidget *widget, gpointer data) priv = itip->priv; - priv->rsvp = TRUE; + priv->rsvp = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)); } static void insert_rsvp (GtkWidget *hbox, EItipControl *itip) { + EItipControlPrivate *priv; GtkWidget *btn; + + priv = itip->priv; btn = gtk_check_button_new_with_label ("RSVP"); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (btn), TRUE); + priv->rsvp = TRUE; g_signal_connect (btn, "clicked", G_CALLBACK (rsvp_clicked_cb), itip); |