diff options
author | Jeff Cai <jeff.cai@sun.com> | 2005-12-21 14:34:47 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2005-12-21 14:34:47 +0800 |
commit | 664f683b703a70945c5cf9ce4afd4d693e5b3cf1 (patch) | |
tree | e2044f1e3fda4d7e3d704a3e445b126c0948fd38 | |
parent | 022c02a91d73ba43c074f7457650fb3db2b95e4b (diff) | |
download | gsoc2013-evolution-664f683b703a70945c5cf9ce4afd4d693e5b3cf1.tar gsoc2013-evolution-664f683b703a70945c5cf9ce4afd4d693e5b3cf1.tar.gz gsoc2013-evolution-664f683b703a70945c5cf9ce4afd4d693e5b3cf1.tar.bz2 gsoc2013-evolution-664f683b703a70945c5cf9ce4afd4d693e5b3cf1.tar.lz gsoc2013-evolution-664f683b703a70945c5cf9ce4afd4d693e5b3cf1.tar.xz gsoc2013-evolution-664f683b703a70945c5cf9ce4afd4d693e5b3cf1.tar.zst gsoc2013-evolution-664f683b703a70945c5cf9ce4afd4d693e5b3cf1.zip |
** See bug 324473 delete reference to account editor to make sure be
2005-12-21 Jeff Cai <jeff.cai@sun.com>
** See bug 324473
* em-account-editor.c: (em_account_editor_construct):
delete reference to account editor to make sure be destroyed
when it is closed.
svn path=/trunk/; revision=30912
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-account-editor.c | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 1199243afd..282a1fa75c 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2005-12-21 Jeff Cai <jeff.cai@sun.com> + + ** See bug 324473 + * em-account-editor.c: (em_account_editor_construct): + delete reference to account editor to make sure be destroyed + when it is closed. + 2005-12-20 Veerapuram Varadhan <vvaradhan@novell.com> Fixes #246256 diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index d3d8ef4da7..59f18fa9e4 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -2736,6 +2736,5 @@ em_account_editor_construct(EMAccountEditor *emae, EAccount *account, em_account e_config_set_target((EConfig *)ec, (EConfigTarget *)target); emae->editor = e_config_create_window((EConfig *)ec, NULL, type==EMAE_NOTEBOOK?_("Account Editor"):_("Evolution Account Assistant")); - g_object_ref(emae); g_signal_connect(emae->editor, "destroy", G_CALLBACK(emae_editor_destroyed), emae); } |