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:
parent
97d05f9d67
commit
df62463e27
|
@ -1850,8 +1850,6 @@ Group* Widget::createGroup(int groupId, const GroupId& groupPersistentId)
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto groupName = tr("Groupchat #%1").arg(groupId);
|
const auto groupName = tr("Groupchat #%1").arg(groupId);
|
||||||
Core* core = core;
|
|
||||||
|
|
||||||
bool enabled = core->getGroupAvEnabled(groupId);
|
bool enabled = core->getGroupAvEnabled(groupId);
|
||||||
Group* newgroup = GroupList::addGroup(groupId, groupPersistentId, groupName, enabled, core->getUsername());
|
Group* newgroup = GroupList::addGroup(groupId, groupPersistentId, groupName, enabled, core->getUsername());
|
||||||
std::shared_ptr<GroupChatroom> chatroom(new GroupChatroom(newgroup));
|
std::shared_ptr<GroupChatroom> chatroom(new GroupChatroom(newgroup));
|
||||||
|
@ -2412,7 +2410,6 @@ void Widget::setActiveToolMenuButton(ActiveToolMenuButton newActiveButton)
|
||||||
|
|
||||||
void Widget::retranslateUi()
|
void Widget::retranslateUi()
|
||||||
{
|
{
|
||||||
Core* core = core;
|
|
||||||
ui->retranslateUi(this);
|
ui->retranslateUi(this);
|
||||||
setUsername(core->getUsername());
|
setUsername(core->getUsername());
|
||||||
setStatusMessage(core->getStatusMessage());
|
setStatusMessage(core->getStatusMessage());
|
||||||
|
|
Loading…
Reference in New Issue
Block a user