diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2009-07-29 00:02:28 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-11 07:34:44 +0800 |
commit | a168c8d2de53fb25ae41a38f8e7e73b93a749daa (patch) | |
tree | f60a8b57baccc39305de1fad42cd287a02c05153 /composer | |
parent | cdd06c393d2c6dd0b5716a354aecc92c8457dc4d (diff) | |
download | gsoc2013-evolution-a168c8d2de53fb25ae41a38f8e7e73b93a749daa.tar.gz gsoc2013-evolution-a168c8d2de53fb25ae41a38f8e7e73b93a749daa.tar.zst gsoc2013-evolution-a168c8d2de53fb25ae41a38f8e7e73b93a749daa.zip |
BUGFIX: #589982 - Fix a critical warning while replying for a mail
Diffstat (limited to 'composer')
-rw-r--r-- | composer/e-composer-header-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/composer/e-composer-header-table.c b/composer/e-composer-header-table.c index 47885df074..30e3d5778f 100644 --- a/composer/e-composer-header-table.c +++ b/composer/e-composer-header-table.c @@ -160,7 +160,7 @@ composer_header_table_notify_header (EComposerHeader *header, { GtkWidget *parent; - if (strcmp (property_name, "destinations-to") == 0) + if (composer_lite && strcmp (property_name, "destinations-to") == 0) parent = g_object_get_data ( G_OBJECT (header->input_widget), "parent"); else |