Changeset 2501

Show
Ignore:
Timestamp:
08/30/07 17:26:51 (1 year ago)
Author:
dfriedrich
Message:

-removed empty xml source files
-path can now also be the name of a addressbook (not sure if patch is really correct) :-P

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/evolution2/src/Makefile.am

    r2183 r2501  
    1919        evolution2_ecal.h \ 
    2020        evolution2_etodo.h \ 
    21         evolution2_xml.h \ 
    2221        evo2-sync 
    2322         
     
    2625        evolution2_ebook.c \ 
    2726        evolution2_ecal.c \ 
    28         evolution2_etodo.c \ 
    29         evolution2_xml.c 
     27        evolution2_etodo.c 
    3028 
    3129 
  • plugins/evolution2/src/evolution2_sync.c

    r2183 r2501  
    141141                for (s = e_source_group_peek_sources (group); s; s = s->next) { 
    142142                        ESource *source = E_SOURCE (s->data); 
    143                         osync_trace(TRACE_INTERNAL, "Comparing %s and %s", e_source_get_uri(source), uri); 
     143                        osync_trace(TRACE_INTERNAL, "Comparing source uri %s and %s", e_source_get_uri(source), uri); 
    144144                        if (!strcmp(e_source_get_uri(source), uri)) 
     145                                return source; 
     146                        osync_trace(TRACE_INTERNAL, "Comparing source name %s and %s", e_source_peek_name(source), uri); 
     147                        if (!strcmp(e_source_peek_name(source), uri)) 
    145148                                return source; 
    146149                } 
  • plugins/evolution2/src/evolution2_sync.h

    r2183 r2501  
    5050#include "evolution2_ecal.h" 
    5151#include "evolution2_etodo.h" 
    52 #include "evolution2_xml.h" 
    5352 
    5453#endif