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:
parent
3f5105d5c1
commit
68bf26305c
|
@ -757,4 +757,4 @@ void ContentDialog::addFriendWidget(FriendWidget* widget, Status status)
|
|||
bool ContentDialog::isActiveWidget(GenericChatroomWidget* widget)
|
||||
{
|
||||
return activeChatroomWidget == widget;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@ bool ContentDialogManager::groupWidgetExists(int groupId)
|
|||
return dialog->containsGroup(groupId);
|
||||
}
|
||||
|
||||
FriendWidget* ContentDialogManager::addFriendToDialog(ContentDialog* dialog,
|
||||
FriendWidget* ContentDialogManager::addFriendToDialog(ContentDialog* dialog,
|
||||
std::shared_ptr<FriendChatroom> chatroom, GenericChatForm* form)
|
||||
{
|
||||
auto friendWidget = dialog->addFriend(chatroom, form);
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -207,4 +209,4 @@ void ContentDialogManager::onDialogClose()
|
|||
|
||||
removeDialog(dialog, friendDialogs);
|
||||
removeDialog(dialog, groupDialogs);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user