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

fix(widget): fix freeze on showMainGui

Don't use copied uninitialized shadowing Core* in Widget
This commit is contained in:
Anthony Bilinski 2019-04-13 14:16:39 -07:00
parent 97d05f9d67
commit df62463e27
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -1850,8 +1850,6 @@ Group* Widget::createGroup(int groupId, const GroupId& groupPersistentId)
}
const auto groupName = tr("Groupchat #%1").arg(groupId);
Core* core = core;
bool enabled = core->getGroupAvEnabled(groupId);
Group* newgroup = GroupList::addGroup(groupId, groupPersistentId, groupName, enabled, core->getUsername());
std::shared_ptr<GroupChatroom> chatroom(new GroupChatroom(newgroup));
@ -2412,7 +2410,6 @@ void Widget::setActiveToolMenuButton(ActiveToolMenuButton newActiveButton)
void Widget::retranslateUi()
{
Core* core = core;
ui->retranslateUi(this);
setUsername(core->getUsername());
setStatusMessage(core->getStatusMessage());