mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-23 12:15:59 -05:00
Allow deleting extension plugin data from Browser Statistics
This commit is contained in:
parent
5a3bde7676
commit
292046ff7f
8 changed files with 92 additions and 20 deletions
|
|
@ -946,6 +946,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