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-10-15 19:02:31 +0300
committerFelix Geyer <debfx@fobos.de>2015-10-15 19:02:31 +0300
commitdff3fc0572608558e87e9bb8c8e9e338feb8522a (patch)
treec3475085e7ce8029e65d8003541c92d220e121e2 /tests/TestCsvExporter.cpp
parent5de0ec94e054fe3525f84b626aff7a45cc91712f (diff)
Coding style fixes.
Diffstat (limited to 'tests/TestCsvExporter.cpp')
-rw-r--r--tests/TestCsvExporter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/TestCsvExporter.cpp b/tests/TestCsvExporter.cpp
index 3304d6953..1fa663477 100644
--- a/tests/TestCsvExporter.cpp
+++ b/tests/TestCsvExporter.cpp
@@ -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();