| 2136 | } |
| 2137 | |
| 2138 | rdcstr CaptureContext::GetResourceName(ResourceId id) const |
| 2139 | { |
| 2140 | rdcstr ret = GetResourceNameUnsuffixed(id); |
| 2141 | |
| 2142 | if(m_OrigToReplacedResources.contains(id)) |
| 2143 | ret += tr(" (Edited)"); |
| 2144 | |
| 2145 | return ret; |
| 2146 | } |
| 2147 | |
| 2148 | bool CaptureContext::IsAutogeneratedName(ResourceId id) |
| 2149 | { |
no test coverage detected