aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/nntp/camel-nntp-provider.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-05-16 21:08:43 +0800
committerChris Toshok <toshok@src.gnome.org>2000-05-16 21:08:43 +0800
commit6b41e702201a040f3b2f9b8ef02ffdb4a846e981 (patch)
tree3d54e84749036caed86eff82b3533c974b42e7bd /camel/providers/nntp/camel-nntp-provider.c
parent54c5a28100b2e35d4036f44316d50e1dac338a9c (diff)
downloadgsoc2013-evolution-6b41e702201a040f3b2f9b8ef02ffdb4a846e981.tar
gsoc2013-evolution-6b41e702201a040f3b2f9b8ef02ffdb4a846e981.tar.gz
gsoc2013-evolution-6b41e702201a040f3b2f9b8ef02ffdb4a846e981.tar.bz2
gsoc2013-evolution-6b41e702201a040f3b2f9b8ef02ffdb4a846e981.tar.lz
gsoc2013-evolution-6b41e702201a040f3b2f9b8ef02ffdb4a846e981.tar.xz
gsoc2013-evolution-6b41e702201a040f3b2f9b8ef02ffdb4a846e981.tar.zst
gsoc2013-evolution-6b41e702201a040f3b2f9b8ef02ffdb4a846e981.zip
get things working with new camel summary stuff.
* providers/nntp/camel-nntp-folder.c: * providers/nntp/camel-nntp-folder.h: * providers/nntp/camel-nntp-provider.c: * providers/nntp/camel-nntp-store.c: * providers/nntp/camel-nntp-utils.c: * providers/nntp/camel-nntp-utils.h: get things working with new camel summary stuff. * providers/nntp/camel-nntp-summary.c: * providers/nntp/camel-nntp-summary.h: removed files since camel-folder-summary does all we need. svn path=/trunk/; revision=3090
Diffstat (limited to 'camel/providers/nntp/camel-nntp-provider.c')
-rw-r--r--camel/providers/nntp/camel-nntp-provider.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/camel/providers/nntp/camel-nntp-provider.c b/camel/providers/nntp/camel-nntp-provider.c
index 449de945e6..fe50a1f952 100644
--- a/camel/providers/nntp/camel-nntp-provider.c
+++ b/camel/providers/nntp/camel-nntp-provider.c
@@ -3,7 +3,7 @@
/*
* Authors :
- * Dan Winship <danw@helixcode.com>
+ * Chris Toshok <toshok@helixcode.com>
*
* Copyright (C) 2000 Helix Code, Inc. (www.helixcode.com)
*
@@ -56,15 +56,13 @@ camel_provider_module_init (CamelSession *session)
{
news_provider.object_types[CAMEL_PROVIDER_STORE] =
camel_nntp_store_get_type();
- nntp_provider.object_types[CAMEL_PROVIDER_STORE] =
- camel_nntp_store_get_type();
#ifdef NOTYET
nntp_provider.object_types[CAMEL_PROVIDER_TRANSPORT] =
camel_nntp_transport_get_type();
#endif
- camel_session_register_provider (session", &news_provider);
- camel_session_register_provider (session", &nntp_provider);
+ camel_session_register_provider (session, &news_provider);
+ camel_session_register_provider (session, &nntp_provider);
}