| 160 | } |
| 161 | |
| 162 | void LocalisationService::FreeObjectString(StringId stringId) |
| 163 | { |
| 164 | if (stringId != kStringIdEmpty) |
| 165 | { |
| 166 | size_t index = stringId - kBaseObjectStringID; |
| 167 | if (index < _objectStrings.size()) |
| 168 | { |
| 169 | _objectStrings[index] = {}; |
| 170 | } |
| 171 | _availableObjectStringIds.push(stringId); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | const std::vector<int32_t>& LocalisationService::GetLanguageOrder() const |
| 176 | { |
no test coverage detected