| 36 | } |
| 37 | |
| 38 | const wchar_t* GeneralUtils::LoadStringOrDefault(const char* key, const wchar_t* defaultValue) |
| 39 | { |
| 40 | if (GeneralUtils::IsValidString(key)) |
| 41 | return StringTable::LoadString(key); |
| 42 | else |
| 43 | return defaultValue; |
| 44 | } |
| 45 | |
| 46 | const wchar_t* GeneralUtils::LoadStringUnlessMissing(const char* key, const wchar_t* defaultValue) |
| 47 | { |
nothing calls this directly
no outgoing calls
no test coverage detected