Fix typo canDeleteCurrentGoup() -> canDeleteCurrentGroup().

This commit is contained in:
Felix Geyer 2014-05-15 22:56:36 +02:00
parent ce7e01a1b1
commit e361b0dd81
3 changed files with 4 additions and 4 deletions

View file

@ -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();