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

@ -190,7 +190,7 @@ QString Entry::title() const
QString Entry::url() const
{
return m_attributes->value(EntryAttributes::URLNameKey);
return m_attributes->value(EntryAttributes::URLKey);
}
QString Entry::username() const
@ -316,7 +316,7 @@ void Entry::setTitle(const QString& title)
void Entry::setUrl(const QString& url)
{
m_attributes->set(EntryAttributes::URLNameKey, url, m_attributes->isProtected(EntryAttributes::URLNameKey));
m_attributes->set(EntryAttributes::URLKey, url, m_attributes->isProtected(EntryAttributes::URLKey));
}
void Entry::setUsername(const QString& username)