mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add ability to delete groups via gui.
This commit is contained in:
parent
19bacd6737
commit
8467e7756d
11 changed files with 153 additions and 29 deletions
|
@ -44,6 +44,11 @@ Entry::~Entry()
|
|||
{
|
||||
if (m_group) {
|
||||
m_group->removeEntry(this);
|
||||
|
||||
DeletedObject delEntry;
|
||||
delEntry.deletionTime = QDateTime::currentDateTimeUtc();
|
||||
delEntry.uuid = m_uuid;
|
||||
m_group->addDeletedObject(delEntry);
|
||||
}
|
||||
|
||||
qDeleteAll(m_history);
|
||||
|
@ -356,7 +361,14 @@ void Entry::setGroup(Group* group)
|
|||
{
|
||||
if (m_group) {
|
||||
m_group->removeEntry(this);
|
||||
if (m_group->database() != group->database()) {
|
||||
DeletedObject delEntry;
|
||||
delEntry.deletionTime = QDateTime::currentDateTimeUtc();
|
||||
delEntry.uuid = m_uuid;
|
||||
m_group->addDeletedObject(delEntry);
|
||||
}
|
||||
}
|
||||
|
||||
group->addEntry(this);
|
||||
m_group = group;
|
||||
QObject::setParent(group);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue