Remove duplicate menu entries to copy username and password.

This commit is contained in:
Florian Geyer
2013-11-30 16:05:10 +01:00
parent af98c2636c
commit 34f12ac39c
4 changed files with 21 additions and 8 deletions

View File

@@ -17,8 +17,10 @@
#include "EntryAttributes.h"
const QStringList EntryAttributes::DefaultAttributes(QStringList() << "Title" << "UserName"
<< "Password" << "URL" << "Notes");
const QString EntryAttributes::UserNameKey = "UserName";
const QString EntryAttributes::PasswordKey = "Password";
const QStringList EntryAttributes::DefaultAttributes(QStringList() << "Title" << UserNameKey
<< PasswordKey << "URL" << "Notes");
EntryAttributes::EntryAttributes(QObject* parent)
: QObject(parent)