mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
Add modified signal for database.
This commit is contained in:
parent
2f58b854ed
commit
1d23ed46e5
2 changed files with 2 additions and 0 deletions
|
|
@ -162,6 +162,7 @@ void Database::setKey(const CompositeKey& key, const QByteArray& transformSeed)
|
|||
{
|
||||
m_transformSeed = transformSeed;
|
||||
m_transformedMasterKey = key.transform(transformSeed, transformRounds());
|
||||
Q_EMIT modified();
|
||||
}
|
||||
|
||||
void Database::setKey(const CompositeKey& key)
|
||||
|
|
|
|||
|
|
@ -88,6 +88,7 @@ Q_SIGNALS:
|
|||
void groupAdded();
|
||||
void groupAboutToRemove(Group* group);
|
||||
void groupRemoved();
|
||||
void modified();
|
||||
|
||||
private:
|
||||
Entry* recFindEntry(const Uuid& uuid, Group* group);
|
||||
|
|
|
|||
Loading…
Reference in a new issue