Browse Source

Fix typo: == -> = in assignment

pull/9/merge
Tux3 / Mlkj / !Lev.uXFMLA 11 years ago
parent
commit
2fa141fef7
  1. 2
      widget/widget.cpp

2
widget/widget.cpp

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

Loading…
Cancel
Save