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

@ -291,7 +291,7 @@ void MainWindow::setMenuActionState(DatabaseWidget::Mode mode)
m_ui->actionEntryOpenUrl->setEnabled(singleEntrySelected);
m_ui->actionGroupNew->setEnabled(groupSelected);
m_ui->actionGroupEdit->setEnabled(groupSelected);
m_ui->actionGroupDelete->setEnabled(groupSelected && dbWidget->canDeleteCurrentGoup());
m_ui->actionGroupDelete->setEnabled(groupSelected && dbWidget->canDeleteCurrentGroup());
m_ui->actionSearch->setEnabled(true);
// TODO: get checked state from db widget
m_ui->actionSearch->setChecked(inSearch);