Changeset 815
- Timestamp:
- 01/31/06 22:36:35 (3 years ago)
- Location:
- plugins/kdepim
- Files:
-
- 1 added
- 2 modified
-
Makefile.am (modified) (2 diffs)
-
src/kdepim-sync (added)
-
src/kdepim_sync.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/kdepim/Makefile.am
r517 r815 3 3 4 4 plugindir=@OPENSYNC_PLUGINDIR@ 5 configdir=@OPENSYNC_CONFIGDIR@ 5 6 6 7 INCLUDES = $(OSYNC_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS) $(KDE_INCLUDES) $(QT_INCLUDES) -I$(top_srcdir) … … 11 12 #FIXME: Is there a KDE macro to set this? 12 13 LIB_KCAL = -lkcal 14 15 config_DATA = src/kdepim-sync 13 16 14 17 plugin_LTLIBRARIES = kdepim_sync.la kdepim_lib.la -
plugins/kdepim/src/kdepim_sync.cpp
r489 r815 178 178 void get_info(OSyncEnv *env) 179 179 { 180 OSyncPluginInfo *info = osync_plugin_new_info(env);180 OSyncPluginInfo *info = osync_plugin_new_info(env); 181 181 info->version = 1; 182 info->name = "kdepim ";182 info->name = "kdepim-sync"; 183 183 /*FIXME: i18n */ 184 info->description = "Plugin for the KDEPIM on KDE 3.x"; 184 info->longname = "KDE Desktop"; 185 info->description = "Plugin for the KDE 3.5 Desktop"; 185 186 info->config_type = NO_CONFIGURATION; 186 187 … … 195 196 osync_plugin_set_commit_objformat(info, "contact", "vcard30", kde_vcard_commit_change); 196 197 osync_plugin_set_access_objformat(info, "contact", "vcard30", kde_vcard_access); 197 osync_plugin_accept_objformat(info, "contact", "vcard21", "kde");198 osync_plugin_accept_objformat(info, "contact", "vcard21", "kde"); 198 199 osync_plugin_set_commit_objformat(info, "contact", "vcard21", kde_vcard_commit_change); 199 200 osync_plugin_set_access_objformat(info, "contact", "vcard21", kde_vcard_access);
