---------------------------------------------------------------------------
| 78 | } |
| 79 | //--------------------------------------------------------------------------- |
| 80 | void __fastcall TMessHighlightList::Del(int index) |
| 81 | { |
| 82 | if( index >= 0 && index < Count ) |
| 83 | { |
| 84 | delete (TMessHighlight *)Items[index]; |
| 85 | TList::Delete(index); |
| 86 | } |
| 87 | } |
| 88 | //--------------------------------------------------------------------------- |
| 89 | TMessStyle * TMessHighlightList::FindStyleForMessage(TSyslogMessage * p) |
| 90 | { |
nothing calls this directly
no outgoing calls
no test coverage detected