Reviewed by me.
This commit is contained in:
Francisco Tolmasky
2009-02-23 19:10:41 -08:00
parent ce31353a7a
commit 7b04023f54
+18
View File
@@ -391,6 +391,24 @@ CPTableColumnUserResizingMask;
return newView;
}
- (void)_purge
{
for (var viewHash in _purgableInfosForDataView)
{
var purgableInfos = _purgableInfosForDataView[viewHash];
for (var key in purgableInfos)
{
var view = PurgableInfoView(purgableInfos[key]);
//CPLog.error("PURGING: " + view);
[view removeFromSuperview];
delete purgableInfos[key];
}
}
}
@end