author | eilers <eilers> | 2002-11-19 08:09:25 (UTC) |
---|---|---|
committer | eilers <eilers> | 2002-11-19 08:09:25 (UTC) |
commit | 30b3c39b9fc3d6e4da21c7f7406d66b7ebf02d1a (patch) (side-by-side diff) | |
tree | d917a8d887b0a23605002692b958891cffa08c20 | |
parent | 8500e91c7d1faca6ad301244534b13885d5799a8 (diff) | |
download | opie-30b3c39b9fc3d6e4da21c7f7406d66b7ebf02d1a.zip opie-30b3c39b9fc3d6e4da21c7f7406d66b7ebf02d1a.tar.gz opie-30b3c39b9fc3d6e4da21c7f7406d66b7ebf02d1a.tar.bz2 |
Minor bugfix
-rw-r--r-- | core/pim/addressbook/abtable.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/pim/addressbook/abtable.cpp b/core/pim/addressbook/abtable.cpp index b8127e9..e333b17 100644 --- a/core/pim/addressbook/abtable.cpp +++ b/core/pim/addressbook/abtable.cpp @@ -691,7 +691,9 @@ QString AbTable::findContactContact( const OContact &entry, int /* row */ ) break; case Qtopia::Birthday: + if ( ! entry.birthday().isNull() ) value = TimeString::numberDateString( entry.birthday() ); break; case Qtopia::Anniversary: + if ( ! entry.anniversary().isNull() ) value = TimeString::numberDateString( entry.anniversary() ); break; |