diff options
author | Jesse Pavel <jpavel@src.gnome.org> | 2000-11-15 04:44:12 +0800 |
---|---|---|
committer | Jesse Pavel <jpavel@src.gnome.org> | 2000-11-15 04:44:12 +0800 |
commit | 07cada4dbc0e188e84579406ea0da2c7af2e5a0b (patch) | |
tree | 1f0cc1aa1157b2c7e3fd004d37cf5e9ba7aaa28d | |
parent | 795541456d41b75534bc639cc79de50ebd9fe80b (diff) | |
download | gsoc2013-evolution-07cada4dbc0e188e84579406ea0da2c7af2e5a0b.tar gsoc2013-evolution-07cada4dbc0e188e84579406ea0da2c7af2e5a0b.tar.gz gsoc2013-evolution-07cada4dbc0e188e84579406ea0da2c7af2e5a0b.tar.bz2 gsoc2013-evolution-07cada4dbc0e188e84579406ea0da2c7af2e5a0b.tar.lz gsoc2013-evolution-07cada4dbc0e188e84579406ea0da2c7af2e5a0b.tar.xz gsoc2013-evolution-07cada4dbc0e188e84579406ea0da2c7af2e5a0b.tar.zst gsoc2013-evolution-07cada4dbc0e188e84579406ea0da2c7af2e5a0b.zip |
Fixed REPLY code.
svn path=/trunk/; revision=6573
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 8d9c291eae..ed20842624 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,4 +1,8 @@ 2000-11-13 Jesse Pavel <jpavel@helixcode.com> + + * gui/e-itip-control.c: made the REPLY code actually work. + +2000-11-13 Jesse Pavel <jpavel@helixcode.com> * gui/itip-utils.[ch]: I created this file to store some commonly used enumeration to string mappings and functions. diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 6c9ae51509..a8151b01bf 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -421,6 +421,7 @@ update_reply_cb (GtkWidget *widget, gpointer data) } while (!cal_client_is_loaded (cal_client)) { + gtk_main_iteration_do (FALSE); /* Do a non-blocking iteration. */ usleep (200000L); /* Pause for 1/5th of a second before checking again.*/ } |