mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-01-02 09:10:51 -05:00
Hard code copy action for default attributes.
This commit is contained in:
parent
3e4811791a
commit
4a3da3abe7
7 changed files with 113 additions and 26 deletions
|
|
@ -17,10 +17,13 @@
|
|||
|
||||
#include "EntryAttributes.h"
|
||||
|
||||
const QString EntryAttributes::TitleKey = "Title";
|
||||
const QString EntryAttributes::UserNameKey = "UserName";
|
||||
const QString EntryAttributes::PasswordKey = "Password";
|
||||
const QStringList EntryAttributes::DefaultAttributes(QStringList() << "Title" << UserNameKey
|
||||
<< PasswordKey << "URL" << "Notes");
|
||||
const QString EntryAttributes::URLNameKey = "URL";
|
||||
const QString EntryAttributes::NotesKey = "Notes";
|
||||
const QStringList EntryAttributes::DefaultAttributes(QStringList() << TitleKey << UserNameKey
|
||||
<< PasswordKey << URLNameKey << NotesKey);
|
||||
|
||||
EntryAttributes::EntryAttributes(QObject* parent)
|
||||
: QObject(parent)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue