diff options
Diffstat (limited to 'backends/dialogs/win32')
-rw-r--r-- | backends/dialogs/win32/win32-dialogs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/dialogs/win32/win32-dialogs.cpp b/backends/dialogs/win32/win32-dialogs.cpp index fca0601a71..d9f7bf9a60 100644 --- a/backends/dialogs/win32/win32-dialogs.cpp +++ b/backends/dialogs/win32/win32-dialogs.cpp @@ -138,11 +138,11 @@ Common::DialogManager::DialogResult Win32DialogManager::showFileBrowser(const ch hr = dialog->SetOptions(dwOptions); } - LPWSTR str = Win32::ansiToUnicode(title); + LPWSTR str = Win32::ansiToUnicode(title, Win32::getCurrentCharset()); hr = dialog->SetTitle(str); delete[] str; - str = Win32::ansiToUnicode(_("Choose")); + str = Win32::ansiToUnicode(_("Choose"), Win32::getCurrentCharset()); hr = dialog->SetOkButtonLabel(str); delete[] str; |