Formatting
This commit is contained in:
@@ -192,8 +192,10 @@ QString About::ContributorsHtml() const {
|
||||
|
||||
QString About::PersonToHtml(const Person &person) {
|
||||
|
||||
if (person.email.isNull())
|
||||
if (person.email.isEmpty()) {
|
||||
return person.name;
|
||||
else
|
||||
}
|
||||
else {
|
||||
return QString("%1 <<a href=\"mailto:%2\">%3</a>>").arg(person.name, person.email, person.email);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user