mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-13 16:30:29 -05:00
Fix typo.
This commit is contained in:
parent
f39dfa1c88
commit
a8a6439ba0
@ -262,14 +262,14 @@ void Entry::setAttribute(const QString& key, const QString& value, bool protect)
|
||||
m_protectedAttributes.remove(key);
|
||||
}
|
||||
|
||||
if (isDefaultAttributue(key)) {
|
||||
if (isDefaultAttribute(key)) {
|
||||
Q_EMIT dataChanged(this);
|
||||
}
|
||||
}
|
||||
|
||||
void Entry::removeAttribute(const QString& key)
|
||||
{
|
||||
Q_ASSERT(!isDefaultAttributue(key));
|
||||
Q_ASSERT(!isDefaultAttribute(key));
|
||||
|
||||
m_attributes.remove(key);
|
||||
m_protectedAttributes.remove(key);
|
||||
@ -350,7 +350,7 @@ void Entry::setGroup(Group* group)
|
||||
QObject::setParent(group);
|
||||
}
|
||||
|
||||
bool Entry::isDefaultAttributue(const QString& key)
|
||||
bool Entry::isDefaultAttribute(const QString& key)
|
||||
{
|
||||
return m_defaultAttibutes.contains(key);
|
||||
}
|
||||
|
@ -99,7 +99,7 @@ public:
|
||||
Group* group();
|
||||
void setGroup(Group* group);
|
||||
|
||||
static bool isDefaultAttributue(const QString& key);
|
||||
static bool isDefaultAttribute(const QString& key);
|
||||
|
||||
Q_SIGNALS:
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user