Pass database instead of metadata to edit entry widget.

This commit is contained in:
Florian Geyer 2012-05-13 19:02:07 +02:00
parent af726d465d
commit 078fe3ccf1
3 changed files with 16 additions and 15 deletions

View file

@ -245,7 +245,7 @@ void DatabaseWidget::switchToEntryEdit(Entry* entry)
void DatabaseWidget::switchToEntryEdit(Entry* entry, bool create)
{
m_editEntryWidget->loadEntry(entry, create, m_groupView->currentGroup()->name(),
m_db->metadata());
m_db);
setCurrentIndex(1);
}