mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-11-23 00:10:37 -05:00
Merge remote-tracking branch 'origin/master' into develop
# Conflicts: # src/core/Group.cpp
This commit is contained in:
commit
14e3d9d576
56 changed files with 13872 additions and 6723 deletions
|
|
@ -727,6 +727,13 @@ const Database* Entry::database() const
|
|||
}
|
||||
}
|
||||
|
||||
QString Entry::maskPasswordPlaceholders(const QString &str) const
|
||||
{
|
||||
QString result = str;
|
||||
result.replace(QRegExp("(\\{PASSWORD\\})", Qt::CaseInsensitive, QRegExp::RegExp2), "******");
|
||||
return result;
|
||||
}
|
||||
|
||||
QString Entry::resolveMultiplePlaceholders(const QString& str) const
|
||||
{
|
||||
QString result = str;
|
||||
|
|
@ -818,4 +825,4 @@ QString Entry::resolveUrl(const QString& url) const
|
|||
Q_UNUSED(url);
|
||||
#endif
|
||||
return QString("");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue