Support Entry History and DeletedObjects.

This commit is contained in:
Felix Geyer 2010-08-25 13:52:59 +02:00
parent 5efccf32c9
commit 3193adc215
8 changed files with 140 additions and 17 deletions

View file

@ -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) {