| 134 | //--------------------------------------------------------------------------- |
| 135 | template <class T> |
| 136 | void TUniList<T>::Set(int i, T * p) |
| 137 | { |
| 138 | SetBusy(true); |
| 139 | try |
| 140 | { |
| 141 | if( i>=0 && i<l->Count ) |
| 142 | l->Items[i] = p; |
| 143 | } |
| 144 | __finally |
| 145 | { SetBusy(false); } |
| 146 | } |
| 147 | //--------------------------------------------------------------------------- |
| 148 | template <class T> |
| 149 | int TUniList<T>::get_count() |
nothing calls this directly
no outgoing calls
no test coverage detected