diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-26 04:42:59 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-26 04:42:59 +0800 |
commit | a76dccf18b6d8b854280031dbcc9187cd5744958 (patch) | |
tree | 9db6ab52836f5226e5b3846c1680c828d5f00800 /camel/camel-mime-message.c | |
parent | b42d3101ab747c315952182d78667a58899a1a35 (diff) | |
download | gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.tar.gz gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.tar.zst gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.zip |
now descend from CamelMedium.
1999-08-25 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-mime-part.c: now descend from CamelMedium.
* tests/test1.c (main): all headers must be strdup'ed
(main): unref created objects
svn path=/trunk/; revision=1143
Diffstat (limited to 'camel/camel-mime-message.c')
-rw-r--r-- | camel/camel-mime-message.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/camel/camel-mime-message.c b/camel/camel-mime-message.c index e91b5a3624..69b2ca7e8c 100644 --- a/camel/camel-mime-message.c +++ b/camel/camel-mime-message.c @@ -143,6 +143,14 @@ camel_mime_message_init (gpointer object, gpointer klass) camel_mime_message->recipients = g_hash_table_new (g_strcase_hash, g_strcase_equal); camel_mime_message->flags = g_hash_table_new (g_strcase_hash, g_strcase_equal); + + camel_mime_message->received_date = NULL; + camel_mime_message->sent_date = NULL; + camel_mime_message->subject = NULL; + camel_mime_message->reply_to = NULL; + camel_mime_message->from = NULL; + camel_mime_message->folder = NULL; + camel_mime_message->session = NULL; } GtkType @@ -189,7 +197,6 @@ _finalize (GtkObject *object) if (message->flags) g_hash_table_foreach (message->flags, g_hash_table_generic_free, NULL); - GTK_OBJECT_CLASS (parent_class)->finalize (object); CAMEL_LOG_FULL_DEBUG ("Leaving CamelMimeMessage::finalize\n"); } |