---------------------------------------------------------------------------
| 179 | } |
| 180 | //--------------------------------------------------------------------------- |
| 181 | void __fastcall TMessProcessRuleList::Del(int index) |
| 182 | { |
| 183 | if( index >= 0 && index < Count ) |
| 184 | { |
| 185 | delete (TMessProcessRule *)Items[index]; |
| 186 | TList::Delete(index); |
| 187 | } |
| 188 | } |
| 189 | //--------------------------------------------------------------------------- |
| 190 | void TMessProcessRuleList::Save(String file) |
| 191 | { |
nothing calls this directly
no outgoing calls
no test coverage detected