0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 20:23:05 +02:00

Adding group uuid to list.

This commit is contained in:
Louis-Bertrand Varin 2017-03-12 14:24:22 -04:00 committed by Louis-Bertrand Varin
parent fd9d372e6a
commit a661c17eca

View File

@ -37,7 +37,7 @@ void printGroup(Group* group, QString baseName, int depth) {
QString groupName = baseName + group->name() + "/";
QString indentation = QString(" ").repeated(depth);
out << indentation << groupName << "\n";
out << indentation << groupName << " " << group->uuid().toHex() << "\n";
out.flush();
if (group->entries().isEmpty() && group->children().isEmpty()) {