mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-24 14:15:47 -04:00
reuse referenceRegExp
This commit is contained in:
parent
a03e354504
commit
40851409fb
3 changed files with 10 additions and 3 deletions
|
@ -36,6 +36,7 @@ public:
|
|||
bool contains(const QString& key) const;
|
||||
bool isProtected(const QString& key) const;
|
||||
bool isReference(const QString& key) const;
|
||||
QRegExp referenceRegExp() const;
|
||||
void set(const QString& key, const QString& value, bool protect = false);
|
||||
void remove(const QString& key);
|
||||
void rename(const QString& oldKey, const QString& newKey);
|
||||
|
@ -72,6 +73,7 @@ Q_SIGNALS:
|
|||
private:
|
||||
QMap<QString, QString> m_attributes;
|
||||
QSet<QString> m_protectedAttributes;
|
||||
QRegExp m_referenceRegExp;
|
||||
};
|
||||
|
||||
#endif // KEEPASSX_ENTRYATTRIBUTES_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue