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

Fix typo: == -> = in assignment

This commit is contained in:
Tux3 / Mlkj / !Lev.uXFMLA 2014-06-27 20:39:55 +02:00
parent 84b3e4f395
commit 2fa141fef7

View File

@ -452,7 +452,7 @@ void Widget::removeGroup(int groupId)
{ {
Group* g = GroupList::findGroup(groupId); Group* g = GroupList::findGroup(groupId);
if (g->widget == activeGroupWidget) if (g->widget == activeGroupWidget)
activeGroupWidget == nullptr; activeGroupWidget = nullptr;
GroupList::removeGroup(groupId); GroupList::removeGroup(groupId);
core->removeGroup(groupId); core->removeGroup(groupId);
delete g; delete g;