Coding style++

This commit is contained in:
Felix Geyer 2010-08-24 23:12:01 +02:00
parent 194a081bd7
commit ef52e98ee6
6 changed files with 16 additions and 8 deletions

View file

@ -50,10 +50,12 @@ QString Group::notes() const
QImage Group::icon() const
{
if (m_iconNumber == 0)
if (m_iconNumber == 0) {
return m_db->customIcon(m_customIcon);
else
}
else {
return Database::icon(m_iconNumber);
}
}
int Group::iconNumber() const