mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Properly block modified signal during Database destruction (#6438)
fixes #6393
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
#include "core/EntryAttachments.h"
|
||||
#include "core/EntryAttributes.h"
|
||||
#include "core/Global.h"
|
||||
#include "core/ModifiableObject.h"
|
||||
#include "core/TimeInfo.h"
|
||||
|
||||
class Database;
|
||||
@@ -75,7 +76,7 @@ struct EntryData
|
||||
bool equals(const EntryData& other, CompareItemOptions options) const;
|
||||
};
|
||||
|
||||
class Entry : public QObject
|
||||
class Entry : public ModifiableObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -260,7 +261,6 @@ signals:
|
||||
* Emitted when a default attribute has been changed.
|
||||
*/
|
||||
void entryDataChanged(Entry* entry);
|
||||
void entryModified();
|
||||
|
||||
private slots:
|
||||
void emitDataChanged();
|
||||
|
||||
Reference in New Issue
Block a user