Coding style fixes.

This commit is contained in:
Felix Geyer 2015-10-15 18:02:31 +02:00
parent 5de0ec94e0
commit dff3fc0572
14 changed files with 23 additions and 23 deletions

View file

@ -74,7 +74,7 @@ void EntryView::setEntryList(const QList<Entry*>& entries)
void EntryView::setFirstEntryActive()
{
if(m_model->rowCount() > 0) {
if (m_model->rowCount() > 0) {
QModelIndex index = m_sortModel->mapToSource(m_sortModel->index(0, 0));
setCurrentEntry(m_model->entryFromIndex(index));
}