mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Coding style fixes.
This commit is contained in:
parent
5de0ec94e0
commit
dff3fc0572
14 changed files with 23 additions and 23 deletions
|
@ -51,7 +51,7 @@ void TestCsvExporter::cleanUp()
|
|||
void TestCsvExporter::testExport()
|
||||
{
|
||||
Group* groupRoot = m_db->rootGroup();
|
||||
Group* group= new Group();
|
||||
Group* group = new Group();
|
||||
group->setName("Test Group Name");
|
||||
group->setParent(groupRoot);
|
||||
Entry* entry = new Entry();
|
||||
|
@ -83,10 +83,10 @@ void TestCsvExporter::testEmptyDatabase()
|
|||
void TestCsvExporter::testNestedGroups()
|
||||
{
|
||||
Group* groupRoot = m_db->rootGroup();
|
||||
Group* group= new Group();
|
||||
Group* group = new Group();
|
||||
group->setName("Test Group Name");
|
||||
group->setParent(groupRoot);
|
||||
Group* childGroup= new Group();
|
||||
Group* childGroup = new Group();
|
||||
childGroup->setName("Test Sub Group Name");
|
||||
childGroup->setParent(group);
|
||||
Entry* entry = new Entry();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue