By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2625
Collapse All | Expand All

(-)b/tderesources/carddav/resource.cpp (-2 / +2 lines)
Lines 427-433 Link Here
427
    TDEABC::VCardConverter converter;
427
    TDEABC::VCardConverter converter;
428
    bool ret = true;
428
    bool ret = true;
429
    TDEABC::VCardConverter conv;
429
    TDEABC::VCardConverter conv;
430
    Addressee::List addressees = conv.parseVCards( data.utf8() );
430
    Addressee::List addressees = conv.parseVCards( data );
431
    if (addressees.isEmpty() == true) {
431
    if (addressees.isEmpty() == true) {
432
        ret = false;
432
        ret = false;
433
    }
433
    }
Lines 456-462 Link Here
456
    log("actually parsing the data");
456
    log("actually parsing the data");
457
457
458
    TDEABC::VCardConverter conv;
458
    TDEABC::VCardConverter conv;
459
    Addressee::List addressees = conv.parseVCards( data.utf8() );
459
    Addressee::List addressees = conv.parseVCards( data );
460
    Addressee::List::ConstIterator it;
460
    Addressee::List::ConstIterator it;
461
    for( it = addressees.begin(); it != addressees.end(); ++it ) {
461
    for( it = addressees.begin(); it != addressees.end(); ++it ) {
462
      TDEABC::Addressee addr = *it;
462
      TDEABC::Addressee addr = *it;

Return to bug 2625