mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-05-02 14:46:07 -04:00
Add KeePass2Writer.
Support attributes MasterKeyChanged, MasterKeyChangeRec, MasterKeyChangeForce and Tags. Close streams in the dtor.
This commit is contained in:
parent
a9ac4bbf41
commit
e3da80fcc6
22 changed files with 397 additions and 39 deletions
|
@ -74,6 +74,11 @@ QString Entry::overrideUrl() const
|
|||
return m_overrideUrl;
|
||||
}
|
||||
|
||||
QString Entry::tags() const
|
||||
{
|
||||
return m_tags;
|
||||
}
|
||||
|
||||
TimeInfo Entry::timeInfo() const
|
||||
{
|
||||
return m_timeInfo;
|
||||
|
@ -172,6 +177,11 @@ void Entry::setOverrideUrl(const QString& url)
|
|||
m_overrideUrl = url;
|
||||
}
|
||||
|
||||
void Entry::setTags(const QString& tags)
|
||||
{
|
||||
m_tags = tags;
|
||||
}
|
||||
|
||||
void Entry::setTimeInfo(const TimeInfo& timeInfo)
|
||||
{
|
||||
m_timeInfo = timeInfo;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue