Browse Source

refactor(widget): make AboutFriendForm use FriendWidget as parent

reviewable/pr5733/r2
jenli669 6 years ago
parent
commit
cff845ffa7
No known key found for this signature in database
GPG Key ID: 8267F9F7C2BF7E5E
  1. 2
      src/widget/friendwidget.cpp

2
src/widget/friendwidget.cpp

@ -287,7 +287,7 @@ void FriendWidget::showDetails() @@ -287,7 +287,7 @@ void FriendWidget::showDetails()
const auto frnd = chatroom->getFriend();
const auto iabout = new AboutFriend(frnd, &Settings::getInstance());
std::unique_ptr<IAboutFriend> about = std::unique_ptr<IAboutFriend>(iabout);
const auto aboutUser = new AboutFriendForm(std::move(about), Widget::getInstance());
const auto aboutUser = new AboutFriendForm(std::move(about), this);
connect(aboutUser, &AboutFriendForm::histroyRemoved, this, &FriendWidget::friendHistoryRemoved);
aboutUser->show();
}

Loading…
Cancel
Save