summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorE. Kotsev <deloptes@yahoo.com>2016-04-03 21:21:07 +1000
committerMichele Calgaro <michele.calgaro@yahoo.it>2016-04-03 21:23:48 +1000
commitfef74a0f99c96f857d668432cad4bfd60950e5ee (patch)
tree7bc0d05933b5fbdad73f03eed09636cb201faf09
parent29bb34d2ff1ea8593b6ea132b7b63ca9228ab357 (diff)
downloadtdelibs-fef74a0f99c96f857d668432cad4bfd60950e5ee.tar.gz
tdelibs-fef74a0f99c96f857d668432cad4bfd60950e5ee.zip
tdeabc: fixed birthday assignment in VCardTool. This relates to bug 2613.
Signed-off-by: E. Kotsev <deloptes@yahoo.com> Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit d10e1df3b0c7526fab1ea1948d697bfe1a49242a)
-rw-r--r--tdeabc/vcardtool.cpp9
1 files 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() );