Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Aug 22, 2013
1 parent 3e36078 commit f807276
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions doomsday/libdeng2/src/widgets/widget.cpp
Expand Up @@ -51,12 +51,11 @@ DENG2_PIMPL(Widget)

void clear()
{
qDebug() << "clearing children of" << &self << name;
while(!children.isEmpty())
{
children.first()->d->parent = 0;
Widget *w = children.takeFirst();
qDebug() << "deleting" << w << w->name();
//qDebug() << "deleting" << w << w->name();
delete w;
}
index.clear();
Expand Down

0 comments on commit f807276

Please sign in to comment.