author | zautrix <zautrix> | 2004-09-18 16:32:35 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-18 16:32:35 (UTC) |
commit | a355a58898d0d08d797f872751254cfa958387c1 (patch) (side-by-side diff) | |
tree | ce338c8cc9785d6351a8a8b66fb8e5c1602ceab0 /kabc/addressbook.cpp | |
parent | bf18a7b4edb4121fd2ea974ac1ec634167c9b993 (diff) | |
download | kdepimpi-a355a58898d0d08d797f872751254cfa958387c1.zip kdepimpi-a355a58898d0d08d797f872751254cfa958387c1.tar.gz kdepimpi-a355a58898d0d08d797f872751254cfa958387c1.tar.bz2 |
time fixes
-rw-r--r-- | kabc/addressbook.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index 3ec0795..d03dea3 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp @@ -459,10 +459,15 @@ void AddressBook::insertAddressee( const Addressee &a, bool setRev ) if ( (*it).resource() == 0 ) (*it).setResource( standardResource() ); if ( changed ) { - if ( setRev ) - (*it).setRevision( QDateTime::currentDateTime() ); + if ( setRev ) { + // get rid of micro seconds + QDateTime dt = QDateTime::currentDateTime(); + QTime t = dt.time(); + dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); + (*it).setRevision( dt ); + } (*it).setChanged( true ); } return; |