Rename EntryAttributes::URLNameKey to URLKey.

This commit is contained in:
Felix Geyer
2013-12-02 00:10:47 +01:00
parent 4b41dd30e6
commit f648172625
3 changed files with 5 additions and 5 deletions

View File

@@ -20,10 +20,10 @@
const QString EntryAttributes::TitleKey = "Title";
const QString EntryAttributes::UserNameKey = "UserName";
const QString EntryAttributes::PasswordKey = "Password";
const QString EntryAttributes::URLNameKey = "URL";
const QString EntryAttributes::URLKey = "URL";
const QString EntryAttributes::NotesKey = "Notes";
const QStringList EntryAttributes::DefaultAttributes(QStringList() << TitleKey << UserNameKey
<< PasswordKey << URLNameKey << NotesKey);
<< PasswordKey << URLKey << NotesKey);
EntryAttributes::EntryAttributes(QObject* parent)
: QObject(parent)