diff options
author | Jesse Pavel <jpavel@src.gnome.org> | 2000-10-26 05:23:12 +0800 |
---|---|---|
committer | Jesse Pavel <jpavel@src.gnome.org> | 2000-10-26 05:23:12 +0800 |
commit | e2ebe055b611bd040558bffd990a5b6dafa1b334 (patch) | |
tree | 183e8c847e46c1ca2749e4abef0a7454422db406 /calendar/gui/e-meeting-edit.c | |
parent | 4f1fa371e16910a153a72a497b6e9e93f2f7c416 (diff) | |
download | gsoc2013-evolution-e2ebe055b611bd040558bffd990a5b6dafa1b334.tar gsoc2013-evolution-e2ebe055b611bd040558bffd990a5b6dafa1b334.tar.gz gsoc2013-evolution-e2ebe055b611bd040558bffd990a5b6dafa1b334.tar.bz2 gsoc2013-evolution-e2ebe055b611bd040558bffd990a5b6dafa1b334.tar.lz gsoc2013-evolution-e2ebe055b611bd040558bffd990a5b6dafa1b334.tar.xz gsoc2013-evolution-e2ebe055b611bd040558bffd990a5b6dafa1b334.tar.zst gsoc2013-evolution-e2ebe055b611bd040558bffd990a5b6dafa1b334.zip |
removed the Evolution-Composer generated files, due to a tip on how we do
* removed the Evolution-Composer generated files, due
to a tip on how we do things.
* gui/e-meeting-edit.c: I fixed a bunch of memory-deallocation
bugs, and finished the initial integration with the mailer.
* gui/Makefile.am: made the build us the Evolution-Composer.idl
from the composer directory.
svn path=/trunk/; revision=6176
Diffstat (limited to 'calendar/gui/e-meeting-edit.c')
-rw-r--r-- | calendar/gui/e-meeting-edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-meeting-edit.c b/calendar/gui/e-meeting-edit.c index fa7f609dfe..54283f3f35 100644 --- a/calendar/gui/e-meeting-edit.c +++ b/calendar/gui/e-meeting-edit.c @@ -641,6 +641,7 @@ send_button_clicked_cb (GtkWidget *widget, gpointer data) recipient = &(to_list->_buffer[cntr]); CORBA_free (recipient->name); CORBA_free (recipient->address); + recipient->name = recipient->address = NULL; } CORBA_free (to_list->_buffer); @@ -654,8 +655,7 @@ send_button_clicked_cb (GtkWidget *widget, gpointer data) CORBA_free (description); CORBA_free (attach_data); - bonobo_object_unref (BONOBO_OBJECT (bonobo_server)); - + bonobo_object_unref (BONOBO_OBJECT (bonobo_server)); } |