1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

style: Fix EOF, remove trailing space and add braces

This commit is contained in:
Diadlo 2018-12-25 14:53:32 +03:00
parent 3f5105d5c1
commit 68bf26305c
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
2 changed files with 7 additions and 5 deletions

View File

@ -83,15 +83,17 @@ GroupWidget* ContentDialogManager::addGroupToDialog(ContentDialog* dialog,
void ContentDialogManager::focusFriend(int friendId)
{
auto dialog = focusDialog(friendId, friendDialogs);
if (dialog != nullptr)
if (dialog != nullptr) {
dialog->focusFriend(friendId);
}
}
void ContentDialogManager::focusGroup(int groupId)
{
auto dialog = focusDialog(groupId, groupDialogs);
if (dialog != nullptr)
if (dialog != nullptr) {
dialog->focusGroup(groupId);
}
}
/**