| 1008 | // |
| 1009 | |
| 1010 | void vtkStringArray::SetValue(vtkIdType id, const char* value) |
| 1011 | { |
| 1012 | if (value) |
| 1013 | { |
| 1014 | this->SetValue(id, ValueType(value)); |
| 1015 | } |
| 1016 | } |
| 1017 | |
| 1018 | void vtkStringArray::InsertValue(vtkIdType id, const char* value) |
| 1019 | { |
no test coverage detected