| 300 | //---------------------------------------------------------------------------- |
| 301 | |
| 302 | void Translation::addPair(const string &english, const wstring &translated) |
| 303 | // Add a string pair to the translation vector. |
| 304 | { |
| 305 | pair<string, wstring> entry (english, translated); |
| 306 | m_translation.push_back(entry); |
| 307 | } |
| 308 | |
| 309 | string Translation::convertToMultiByte(const wstring &wideStr) const |
| 310 | // Convert wchar_t to a multibyte string using the currently assigned locale. |
nothing calls this directly
no outgoing calls
no test coverage detected