mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-11-19 22:42:23 -05:00
Add WITH_XC_SSHAGENT flag to build config and use cmake3 package
This commit is contained in:
parent
d571f22ec0
commit
f8b7ffcf8c
2 changed files with 5 additions and 5 deletions
|
|
@ -106,17 +106,17 @@ void EntryAttachmentsWidget::setButtonsVisible(bool buttonsVisible)
|
|||
emit buttonsVisibleChanged(m_buttonsVisible);
|
||||
}
|
||||
|
||||
QByteArray EntryAttachmentsWidget::getAttachment(const QString &name)
|
||||
QByteArray EntryAttachmentsWidget::getAttachment(const QString& name)
|
||||
{
|
||||
return m_entryAttachments->value(name);
|
||||
}
|
||||
|
||||
void EntryAttachmentsWidget::setAttachment(const QString &name, const QByteArray &value)
|
||||
void EntryAttachmentsWidget::setAttachment(const QString& name, const QByteArray& value)
|
||||
{
|
||||
m_entryAttachments->set(name, value);
|
||||
}
|
||||
|
||||
void EntryAttachmentsWidget::removeAttachment(const QString &name)
|
||||
void EntryAttachmentsWidget::removeAttachment(const QString& name)
|
||||
{
|
||||
if (!isReadOnly() && m_entryAttachments->hasKey(name)) {
|
||||
m_entryAttachments->remove(name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue