Check: does this language exist in the resources (protection against outdated registry entries)
| 178 | |
| 179 | // Check: does this language exist in the resources (protection against outdated registry entries) |
| 180 | bool CcppcryptfsApp::IsLanguageAvailable(WORD wLangID) { |
| 181 | for (const auto& opt : m_vAvailableLangs) { |
| 182 | if (opt.langID == wLangID) return true; |
| 183 | } |
| 184 | return false; |
| 185 | } |
| 186 | |
| 187 | // Saving user selection to the registry |
| 188 | void CcppcryptfsApp::SaveLanguageToRegistry(WORD wLangID) { |
nothing calls this directly
no outgoing calls
no test coverage detected