| 44 | } |
| 45 | |
| 46 | const wchar_t* GeneralUtils::LoadStringUnlessMissing(const char* key, const wchar_t* defaultValue) |
| 47 | { |
| 48 | return wcsstr(LoadStringOrDefault(key, defaultValue), L"MISSING:") ? defaultValue : LoadStringOrDefault(key, defaultValue); |
| 49 | } |
| 50 | |
| 51 | std::vector<CellStruct> GeneralUtils::AdjacentCellsInRange(unsigned int range) |
| 52 | { |
nothing calls this directly
no outgoing calls
no test coverage detected