Changeset 2159

Show
Ignore:
Timestamp:
06/13/07 20:01:43 (1 year ago)
Author:
dgollub
Message:

Break if vcard30 is not in the formatenv... this is most likely if
vformat wasn't installed...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/evolution2/src/evolution2_ebook.c

    r1264 r2159  
    306306        OSyncFormatEnv *formatenv = osync_plugin_info_get_format_env(info); 
    307307        env->contact_format = osync_format_env_find_objformat(formatenv, "vcard30"); 
     308 
     309        if (!env->contact_format) { 
     310                osync_error_set(error, OSYNC_ERROR_GENERIC, "Unable to find vcard30 object format. vformat plugin installed?"); 
     311                return FALSE; 
     312        } 
    308313         
    309314