diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-07-08 03:18:57 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-07-08 03:18:57 +0800 |
commit | 8bbe0f34af2bd9906012106d8ee27187f05b6a15 (patch) | |
tree | 5cfa51a91191b20ef2f1f765df6f99611041cae5 /camel/camel-folder-summary.c | |
parent | 26709642fa1a39108690aa5295e1726a0861c58c (diff) | |
download | gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.gz gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.zst gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.zip |
Updated for string-utils namespace changes.
2003-07-07 Jeffrey Stedfast <fejj@ximian.com>
* camel-session.c (camel_session_init): Updated for string-utils
namespace changes.
* camel-provider.c: Updated for string-utils namespace changes.
* camel-mime-part.c (init_header_name_table): Updated for
string-utils namespace changes.
* camel-mime-message.c (camel_mime_message_class_init): Updated
for string-utils namespace changes.
(camel_mime_message_init): Same.
* camel-mime-filter-enriched.c
(camel_mime_filter_enriched_class_init): Updated for string-utils
namespace changes.
* camel-folder-summary.c (camel_folder_summary_init): Updated for
string-utils namespace changes.
* camel-string-utils.[c,h]: Renamed from string-utils.[c,h] and
also namespaced all functions.
svn path=/trunk/; revision=21751
Diffstat (limited to 'camel/camel-folder-summary.c')
-rw-r--r-- | camel/camel-folder-summary.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c index d584750055..b85b8e77ce 100644 --- a/camel/camel-folder-summary.c +++ b/camel/camel-folder-summary.c @@ -50,7 +50,8 @@ #include <camel/camel-stream-null.h> #include <camel/camel-stream-filter.h> -#include "string-utils.h" +#include <camel/camel-string-utils.h> + #include "e-util/md5-utils.h" #include "e-util/e-memory.h" @@ -151,7 +152,7 @@ camel_folder_summary_init (CamelFolderSummary *s) p = _PRIVATE(s) = g_malloc0(sizeof(*p)); - p->filter_charset = g_hash_table_new(g_strcase_hash, g_strcase_equal); + p->filter_charset = g_hash_table_new (camel_strcase_hash, camel_strcase_equal); s->message_info_size = sizeof(CamelMessageInfo); s->content_info_size = sizeof(CamelMessageContentInfo); |