mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Support Entry History and DeletedObjects.
This commit is contained in:
parent
5efccf32c9
commit
3193adc215
8 changed files with 140 additions and 17 deletions
|
@ -29,6 +29,7 @@ Entry::Entry()
|
|||
Entry::~Entry()
|
||||
{
|
||||
// TODO notify group
|
||||
qDeleteAll(m_history);
|
||||
}
|
||||
|
||||
Uuid Entry::uuid() const
|
||||
|
@ -236,6 +237,23 @@ void Entry::setNotes(const QString& notes)
|
|||
addAttribute("Notes", notes);
|
||||
}
|
||||
|
||||
QList<Entry*> Entry::historyItems()
|
||||
{
|
||||
return m_history;
|
||||
}
|
||||
|
||||
const QList<Entry*>& Entry::historyItems() const
|
||||
{
|
||||
return m_history;
|
||||
}
|
||||
|
||||
void Entry::addHistoryItem(Entry* entry)
|
||||
{
|
||||
Q_ASSERT(!entry->parent());
|
||||
|
||||
m_history.append(entry);
|
||||
}
|
||||
|
||||
void Entry::setGroup(Group* group)
|
||||
{
|
||||
if (m_group) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue