From d10e1df3b0c7526fab1ea1948d697bfe1a49242a Mon Sep 17 00:00:00 2001 From: "E. Kotsev" Date: Sun, 3 Apr 2016 21:21:07 +1000 Subject: tdeabc: fixed birthday assignment in VCardTool. This relates to bug 2613. Signed-off-by: E. Kotsev Signed-off-by: Michele Calgaro --- tdeabc/vcardtool.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tdeabc/vcardtool.cpp b/tdeabc/vcardtool.cpp index 41e76e54d..c1e793e77 100644 --- a/tdeabc/vcardtool.cpp +++ b/tdeabc/vcardtool.cpp @@ -413,9 +413,12 @@ Addressee::List VCardTool::parseVCards( const TQString& vcard ) addr.setAgent( parseAgent( *lineIt ) ); // BDAY - else if ( identifier == "bday" ) - addr.setBirthday( parseDateTime( (*lineIt).value().asString() ) ); - + else if ( identifier == "bday" ) { + TQString s((*lineIt).value().asString()); + if ( s.length() > 0 ) + addr.setBirthday( parseDateTime( s ) ); + } + // CATEGORIES else if ( identifier == "categories" ) { const TQStringList categories = splitString( commaSep, (*lineIt).value().asString() ); -- cgit v1.2.1