[evolution-data-server] Unbreak Camel providers.



commit 802c24fbd1346f7ff4c5714ec7d4ec264634bb6e
Author: Matthew Barnes <mbarnes redhat com>
Date:   Mon Sep 28 10:16:41 2009 -0400

    Unbreak Camel providers.

 .../providers/groupwise/camel-groupwise-provider.c |    2 +-
 camel/providers/hula/camel-hula-provider.c         |    2 +-
 camel/providers/imap/camel-imap-provider.c         |    2 +-
 camel/providers/nntp/camel-nntp-provider.c         |    2 +-
 camel/providers/pop3/camel-pop3-provider.c         |    4 ++--
 5 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/camel/providers/groupwise/camel-groupwise-provider.c b/camel/providers/groupwise/camel-groupwise-provider.c
index 8e210d3..69b898e 100644
--- a/camel/providers/groupwise/camel-groupwise-provider.c
+++ b/camel/providers/groupwise/camel-groupwise-provider.c
@@ -100,7 +100,7 @@ static CamelProvider groupwise_provider = {
 	/* ... */
 };
 
-static CamelServiceAuthType camel_groupwise_password_authtype = {
+CamelServiceAuthType camel_groupwise_password_authtype = {
 	N_("Password"),
 
 	N_("This option will connect to the GroupWise server using a "
diff --git a/camel/providers/hula/camel-hula-provider.c b/camel/providers/hula/camel-hula-provider.c
index 2ec965d..5bf2a96 100644
--- a/camel/providers/hula/camel-hula-provider.c
+++ b/camel/providers/hula/camel-hula-provider.c
@@ -89,7 +89,7 @@ static CamelProvider hula_provider = {
 	/* ... */
 };
 
-static CamelServiceAuthType camel_hula_password_authtype = {
+CamelServiceAuthType camel_hula_password_authtype = {
 	N_("Password"),
 
 	N_("This option will connect to the Hula server using a "
diff --git a/camel/providers/imap/camel-imap-provider.c b/camel/providers/imap/camel-imap-provider.c
index 71a24eb..d5c9ef8 100644
--- a/camel/providers/imap/camel-imap-provider.c
+++ b/camel/providers/imap/camel-imap-provider.c
@@ -96,7 +96,7 @@ static CamelProvider imap_provider = {
 	/* ... */
 };
 
-static CamelServiceAuthType camel_imap_password_authtype = {
+CamelServiceAuthType camel_imap_password_authtype = {
 	N_("Password"),
 
 	N_("This option will connect to the IMAP server using a "
diff --git a/camel/providers/nntp/camel-nntp-provider.c b/camel/providers/nntp/camel-nntp-provider.c
index 472b2db..be8e29e 100644
--- a/camel/providers/nntp/camel-nntp-provider.c
+++ b/camel/providers/nntp/camel-nntp-provider.c
@@ -70,7 +70,7 @@ static CamelProvider news_provider = {
 	/* ... */
 };
 
-static CamelServiceAuthType camel_nntp_password_authtype = {
+CamelServiceAuthType camel_nntp_password_authtype = {
 	N_("Password"),
 
 	N_("This option will authenticate with the NNTP server using a "
diff --git a/camel/providers/pop3/camel-pop3-provider.c b/camel/providers/pop3/camel-pop3-provider.c
index cb74949..379ae52 100644
--- a/camel/providers/pop3/camel-pop3-provider.c
+++ b/camel/providers/pop3/camel-pop3-provider.c
@@ -70,7 +70,7 @@ static CamelProvider pop3_provider = {
 	/* ... */
 };
 
-static CamelServiceAuthType camel_pop3_password_authtype = {
+CamelServiceAuthType camel_pop3_password_authtype = {
 	N_("Password"),
 
 	N_("This option will connect to the POP server using a plaintext "
@@ -80,7 +80,7 @@ static CamelServiceAuthType camel_pop3_password_authtype = {
 	TRUE
 };
 
-static CamelServiceAuthType camel_pop3_apop_authtype = {
+CamelServiceAuthType camel_pop3_apop_authtype = {
 	"APOP",
 
 	N_("This option will connect to the POP server using an encrypted "



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]