mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Fix typo canDeleteCurrentGoup() -> canDeleteCurrentGroup().
This commit is contained in:
parent
ce7e01a1b1
commit
e361b0dd81
3 changed files with 4 additions and 4 deletions
|
@ -440,7 +440,7 @@ void DatabaseWidget::createGroup()
|
|||
void DatabaseWidget::deleteGroup()
|
||||
{
|
||||
Group* currentGroup = m_groupView->currentGroup();
|
||||
if (!currentGroup || !canDeleteCurrentGoup()) {
|
||||
if (!currentGroup || !canDeleteCurrentGroup()) {
|
||||
Q_ASSERT(false);
|
||||
return;
|
||||
}
|
||||
|
@ -791,7 +791,7 @@ bool DatabaseWidget::dbHasKey() const
|
|||
return m_db->hasKey();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::canDeleteCurrentGoup() const
|
||||
bool DatabaseWidget::canDeleteCurrentGroup() const
|
||||
{
|
||||
bool isRootGroup = m_db->rootGroup() == m_groupView->currentGroup();
|
||||
bool isRecycleBin = m_db->metadata()->recycleBin() == m_groupView->currentGroup();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue