~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to camel/providers/imapx/camel-imapx-provider.c

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
void
109
109
camel_imapx_module_init (void)
110
110
{
111
 
        imapx_provider.object_types[CAMEL_PROVIDER_STORE] = camel_imapx_store_get_type ();
 
111
        imapx_provider.object_types[CAMEL_PROVIDER_STORE] =
 
112
                CAMEL_TYPE_IMAPX_STORE;
112
113
        imapx_provider.url_hash = imapx_url_hash;
113
114
        imapx_provider.url_equal = imapx_url_equal;
114
115
        imapx_provider.authtypes = camel_sasl_authtype_list (FALSE);
115
 
        imapx_provider.authtypes = g_list_prepend (imapx_provider.authtypes, &camel_imapx_password_authtype);
 
116
        imapx_provider.authtypes = g_list_prepend (
 
117
                imapx_provider.authtypes, &camel_imapx_password_authtype);
116
118
        imapx_provider.translation_domain = GETTEXT_PACKAGE;
117
119
 
118
120
        camel_provider_register (&imapx_provider);