From abb46e8ee1327909e2fafc080298319b8edbc9ff Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 7 Jul 2003 21:44:18 +0000 Subject: Use camel_strcase_hash/equal. 2003-07-07 Jeffrey Stedfast * mail-callbacks.c (mail_generate_reply): Use camel_strcase_hash/equal. svn path=/trunk/; revision=21756 --- mail/mail-callbacks.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mail/mail-callbacks.c') diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index edcbd337f0..9945301125 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -913,7 +913,7 @@ guess_me_from_accounts (const CamelInternetAddress *to, const CamelInternetAddre GHashTable *account_hash; EIterator *iter; - account_hash = g_hash_table_new (g_strcase_hash, g_strcase_equal); + account_hash = g_hash_table_new (camel_strcase_hash, camel_strcase_equal); /* add the default account to the hash first */ if ((def = mail_config_get_default_account ())) { @@ -1016,7 +1016,7 @@ mail_generate_reply (CamelFolder *folder, CamelMimeMessage *message, const char /* Set the recipients */ accounts = mail_config_get_accounts (); - account_hash = g_hash_table_new (g_strcase_hash, g_strcase_equal); + account_hash = g_hash_table_new (camel_strcase_hash, camel_strcase_equal); /* add the default account to the hash first */ if ((def = mail_config_get_default_account ())) { @@ -1119,7 +1119,7 @@ mail_generate_reply (CamelFolder *folder, CamelMimeMessage *message, const char GHashTable *rcpt_hash; EDestination *dest; - rcpt_hash = g_hash_table_new (g_strcase_hash, g_strcase_equal); + rcpt_hash = g_hash_table_new (camel_strcase_hash, camel_strcase_equal); reply_to = camel_mime_message_get_reply_to (message); if (!reply_to) -- cgit v1.2.3