| 273 | } |
| 274 | |
| 275 | STDMETHODIMP CTabbedMDIChildModifiedList::Clear() |
| 276 | { |
| 277 | POSITION pos = this->GetHeadPosition(); |
| 278 | while(pos != NULL) |
| 279 | { |
| 280 | ATL::CComPtr<ITabbedMDIChildModifiedItem> item(this->GetNext(pos)); |
| 281 | if(item) |
| 282 | { |
| 283 | item->putref_ParentList(NULL); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | this->RemoveAll(); |
| 288 | return S_OK; |
| 289 | } |
| 290 | |
| 291 | STDMETHODIMP CTabbedMDIChildModifiedList::get_ParentItem(ITabbedMDIChildModifiedItem** item) |
| 292 | { |
no test coverage detected