Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2015-07-23 00:48:08 +0300
committerFelix Geyer <debfx@fobos.de>2015-09-12 14:51:49 +0300
commit9882f16614051e883821f3f6820711e34b2a05de (patch)
tree0815a4c843e8df7e91c9d03c1f99e077f8b8cb03 /tests/TestModified.cpp
parent60daa2b41bdf12e7096f86947ac9f9e633b4248b (diff)
Remove Tools::currentDateTimeUtc().
Diffstat (limited to 'tests/TestModified.cpp')
-rw-r--r--tests/TestModified.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TestModified.cpp b/tests/TestModified.cpp
index e275e837b..b057feeaa 100644
--- a/tests/TestModified.cpp
+++ b/tests/TestModified.cpp
@@ -237,7 +237,7 @@ void TestModified::testEntrySets()
entry->setExpires(entry->timeInfo().expires());
QCOMPARE(spyModified.count(), spyCount);
- entry->setExpiryTime(Tools::currentDateTimeUtc().addYears(1));
+ entry->setExpiryTime(QDateTime::currentDateTimeUtc().addYears(1));
QCOMPARE(spyModified.count(), ++spyCount);
entry->setExpiryTime(entry->timeInfo().expiryTime());
QCOMPARE(spyModified.count(), spyCount);