KeePassX PR Migration: #190 Search for Group Names (#168)

* Search Group details in addition to entry details; feature parity with KeePass
* Remove assertions to prevent crashes in Debug mode when search result is empty
This commit is contained in:
Janek Bevendorff 2017-01-28 18:27:20 +02:00 committed by Jonathan White
parent 55084499ac
commit a3fd3205a9
3 changed files with 27 additions and 3 deletions

View file

@ -791,7 +791,7 @@ void DatabaseWidget::entryActivationSignalReceived(Entry* entry, EntryModel::Mod
void DatabaseWidget::switchToEntryEdit()
{
Entry* entry = m_entryView->currentEntry();
Q_ASSERT(entry);
if (!entry) {
return;
}
@ -802,7 +802,7 @@ void DatabaseWidget::switchToEntryEdit()
void DatabaseWidget::switchToGroupEdit()
{
Group* group = m_groupView->currentGroup();
Q_ASSERT(group);
if (!group) {
return;
}