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:
authorpasdam <>2018-03-23 13:18:06 +0300
committerJonathan White <support@dmapps.us>2018-07-07 05:23:52 +0300
commitb4d806ad412b33b9af63f926c06453b63c06a129 (patch)
treed05933ccf35ba9796fb21460a30e0d21faa911d3 /tests/gui/TestGuiPixmaps.cpp
parentad4423d226da6105e0732a15918c6429e2ca8ed4 (diff)
Fixed issues with initial commit
Diffstat (limited to 'tests/gui/TestGuiPixmaps.cpp')
-rw-r--r--tests/gui/TestGuiPixmaps.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gui/TestGuiPixmaps.cpp b/tests/gui/TestGuiPixmaps.cpp
index c71fe51b9..c5754ba84 100644
--- a/tests/gui/TestGuiPixmaps.cpp
+++ b/tests/gui/TestGuiPixmaps.cpp
@@ -73,7 +73,7 @@ void TestGuiPixmaps::testEntryIcons()
QCOMPARE(pixmapCached1.cacheKey(), pixmap.cacheKey());
QCOMPARE(pixmapCached2.cacheKey(), pixmap.cacheKey());
- Uuid iconUuid = Uuid::random();
+ QUuid iconUuid = QUuid::createUuid();
icon = QImage(2, 1, QImage::Format_RGB32);
icon.setPixel(0, 0, qRgb(0, 0, 0));
icon.setPixel(1, 0, qRgb(0, 0, 50));
@@ -116,7 +116,7 @@ void TestGuiPixmaps::testGroupIcons()
QCOMPARE(pixmapCached1.cacheKey(), pixmap.cacheKey());
QCOMPARE(pixmapCached2.cacheKey(), pixmap.cacheKey());
- Uuid iconUuid = Uuid::random();
+ QUuid iconUuid = QUuid::createUuid();
icon = QImage(2, 1, QImage::Format_RGB32);
icon.setPixel(0, 0, qRgb(0, 0, 0));
icon.setPixel(1, 0, qRgb(0, 0, 50));