Tracker: Fix double delete

fWidgetList is a BObjectList, the items are deleted when removed already so we
should not have the BObjectList delete them for us too. Instead, let's just turn
that off so we can delete the items ourselves one time.
This commit is contained in:
John Scipione 2015-02-26 17:27:47 -05:00
parent 8c2813c187
commit c8c5ac5107

View File

@ -75,7 +75,7 @@ BPose::BPose(Model* model, BPoseView* view, uint32 clipboardMode,
bool selected)
:
fModel(model),
fWidgetList(4, true),
fWidgetList(4, false),
fClipboardMode(clipboardMode),
fPercent(-1),
fSelectionTime(0),