---------------------------------------------------------------------------
| 418 | } |
| 419 | //--------------------------------------------------------------------------- |
| 420 | void __fastcall TStorageFileList::Del(int index) |
| 421 | { |
| 422 | if( index >= 0 && index < Count ) |
| 423 | { |
| 424 | delete (TStorageFile *)Items[index]; |
| 425 | TList::Delete(index); |
| 426 | } |
| 427 | } |
| 428 | //--------------------------------------------------------------------------- |
| 429 | void TStorageFileList::Save(XMLNode * p) |
| 430 | { |
no outgoing calls
no test coverage detected