mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
clang-tidy: use auto
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
f3f1520f81
commit
7e1d980d08
32 changed files with 224 additions and 223 deletions
|
@ -37,7 +37,7 @@ void TestDeletedObjects::createAndDelete(QSharedPointer<Database> db, int delObj
|
|||
Group* root = db->rootGroup();
|
||||
int rootChildrenCount = root->children().size();
|
||||
|
||||
Group* g = new Group();
|
||||
auto g = new Group();
|
||||
g->setParent(root);
|
||||
QUuid gUuid = QUuid::createUuid();
|
||||
g->setUuid(gUuid);
|
||||
|
@ -46,19 +46,19 @@ void TestDeletedObjects::createAndDelete(QSharedPointer<Database> db, int delObj
|
|||
QCOMPARE(db->deletedObjects().at(delObjectsSize - 1).uuid, gUuid);
|
||||
QCOMPARE(rootChildrenCount, root->children().size());
|
||||
|
||||
Group* g1 = new Group();
|
||||
auto g1 = new Group();
|
||||
g1->setParent(root);
|
||||
QUuid g1Uuid = QUuid::createUuid();
|
||||
g1->setUuid(g1Uuid);
|
||||
Entry* e1 = new Entry();
|
||||
auto e1 = new Entry();
|
||||
e1->setGroup(g1);
|
||||
QUuid e1Uuid = QUuid::createUuid();
|
||||
e1->setUuid(e1Uuid);
|
||||
Group* g2 = new Group();
|
||||
auto g2 = new Group();
|
||||
g2->setParent(g1);
|
||||
QUuid g2Uuid = QUuid::createUuid();
|
||||
g2->setUuid(g2Uuid);
|
||||
Entry* e2 = new Entry();
|
||||
auto e2 = new Entry();
|
||||
e2->setGroup(g2);
|
||||
QUuid e2Uuid = QUuid::createUuid();
|
||||
e2->setUuid(e2Uuid);
|
||||
|
@ -73,7 +73,7 @@ void TestDeletedObjects::createAndDelete(QSharedPointer<Database> db, int delObj
|
|||
QCOMPARE(db->deletedObjects().at(delObjectsSize - 1).uuid, g1Uuid);
|
||||
QCOMPARE(rootChildrenCount, root->children().size());
|
||||
|
||||
Entry* e3 = new Entry();
|
||||
auto e3 = new Entry();
|
||||
e3->setGroup(root);
|
||||
QUuid e3Uuid = QUuid::createUuid();
|
||||
e3->setUuid(e3Uuid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue