Changeset 1469

Show
Ignore:
Timestamp:
11/13/06 17:25:39 (2 years ago)
Author:
cstender
Message:

ignore entries from birthday resource (patch by rhuitl)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/kdepim/src/kcal.cpp

    r996 r1469  
    130130         
    131131    for (KCal::Event::List::ConstIterator i = events.begin(); i != events.end(); i++) { 
     132 
     133        /* Skip entries from birthday resource. This is just a workaround. 
     134         * patch by rhuitl 
     135         * FIXME: todo: add a list of resources to kdepim-sync.conf 
     136         */ 
     137        if ( (*i)->uid().contains("KABC_Birthday") ) 
     138            continue;     
     139 
    132140        if (!report_incidence(ctx, *i, "event", "vevent20")) 
    133141            return false;