mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-03 03:56:08 -04:00
Adding group uuid to list.
This commit is contained in:
parent
fd9d372e6a
commit
a661c17eca
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ void printGroup(Group* group, QString baseName, int depth) {
|
||||||
QString groupName = baseName + group->name() + "/";
|
QString groupName = baseName + group->name() + "/";
|
||||||
QString indentation = QString(" ").repeated(depth);
|
QString indentation = QString(" ").repeated(depth);
|
||||||
|
|
||||||
out << indentation << groupName << "\n";
|
out << indentation << groupName << " " << group->uuid().toHex() << "\n";
|
||||||
out.flush();
|
out.flush();
|
||||||
|
|
||||||
if (group->entries().isEmpty() && group->children().isEmpty()) {
|
if (group->entries().isEmpty() && group->children().isEmpty()) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue