mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Allow deleting extension plugin data from Browser Statistics
This commit is contained in:
parent
3c05dd248d
commit
2f0160438a
8 changed files with 92 additions and 20 deletions
|
@ -977,6 +977,15 @@ bool BrowserService::deleteEntry(const QString& uuid)
|
|||
return true;
|
||||
}
|
||||
|
||||
void BrowserService::removePluginData(Entry* entry) const
|
||||
{
|
||||
if (entry) {
|
||||
entry->beginUpdate();
|
||||
entry->customData()->remove(BrowserService::KEEPASSXCBROWSER_NAME);
|
||||
entry->endUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
QList<Entry*> BrowserService::searchEntries(const QSharedPointer<Database>& db,
|
||||
const QString& siteUrl,
|
||||
const QString& formUrl,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue