mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Replaced Uuid with QUuid
This commit is contained in:
parent
dcece140a0
commit
ad4423d226
49 changed files with 413 additions and 612 deletions
|
@ -38,7 +38,7 @@ void TestDeletedObjects::createAndDelete(Database* db, int delObjectsSize)
|
|||
|
||||
Group* g = new Group();
|
||||
g->setParent(root);
|
||||
Uuid gUuid = Uuid::random();
|
||||
QUuid gUuid = QUuid::createUuid();
|
||||
g->setUuid(gUuid);
|
||||
delete g;
|
||||
QCOMPARE(db->deletedObjects().size(), ++delObjectsSize);
|
||||
|
@ -47,19 +47,19 @@ void TestDeletedObjects::createAndDelete(Database* db, int delObjectsSize)
|
|||
|
||||
Group* g1 = new Group();
|
||||
g1->setParent(root);
|
||||
Uuid g1Uuid = Uuid::random();
|
||||
QUuid g1Uuid = QUuid::createUuid();
|
||||
g1->setUuid(g1Uuid);
|
||||
Entry* e1 = new Entry();
|
||||
e1->setGroup(g1);
|
||||
Uuid e1Uuid = Uuid::random();
|
||||
QUuid e1Uuid = QUuid::createUuid();
|
||||
e1->setUuid(e1Uuid);
|
||||
Group* g2 = new Group();
|
||||
g2->setParent(g1);
|
||||
Uuid g2Uuid = Uuid::random();
|
||||
QUuid g2Uuid = QUuid::createUuid();
|
||||
g2->setUuid(g2Uuid);
|
||||
Entry* e2 = new Entry();
|
||||
e2->setGroup(g2);
|
||||
Uuid e2Uuid = Uuid::random();
|
||||
QUuid e2Uuid = QUuid::createUuid();
|
||||
e2->setUuid(e2Uuid);
|
||||
|
||||
delete g1;
|
||||
|
@ -74,7 +74,7 @@ void TestDeletedObjects::createAndDelete(Database* db, int delObjectsSize)
|
|||
|
||||
Entry* e3 = new Entry();
|
||||
e3->setGroup(root);
|
||||
Uuid e3Uuid = Uuid::random();
|
||||
QUuid e3Uuid = QUuid::createUuid();
|
||||
e3->setUuid(e3Uuid);
|
||||
|
||||
delete e3;
|
||||
|
@ -132,11 +132,11 @@ void TestDeletedObjects::testDatabaseChange()
|
|||
|
||||
Group* g1 = new Group();
|
||||
g1->setParent(root);
|
||||
Uuid g1Uuid = Uuid::random();
|
||||
QUuid g1Uuid = QUuid::createUuid();
|
||||
g1->setUuid(g1Uuid);
|
||||
Entry* e1 = new Entry();
|
||||
e1->setGroup(g1);
|
||||
Uuid e1Uuid = Uuid::random();
|
||||
QUuid e1Uuid = QUuid::createUuid();
|
||||
e1->setUuid(e1Uuid);
|
||||
g1->setParent(root2);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue