X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1318fabeb4df18bf0c6f045f5598a4e16ea5fd85..6a570331df89d26dfb682bedab0faf13e2c285d8:/src/msw/dirdlg.cpp diff --git a/src/msw/dirdlg.cpp b/src/msw/dirdlg.cpp index 66ad5c708e..4be95f9efe 100644 --- a/src/msw/dirdlg.cpp +++ b/src/msw/dirdlg.cpp @@ -66,7 +66,7 @@ int wxDirDialog::ShowModal(void) if (m_parent) hWnd = (HWND) m_parent->GetHWND(); BROWSEINFO bi; - LPSTR lpBuffer; + LPTSTR lpBuffer; // LPITEMIDLIST pidlPrograms; // PIDL for Programs folder LPITEMIDLIST pidlBrowse; // PIDL selected by user LPMALLOC pMalloc = NULL; @@ -77,7 +77,7 @@ int wxDirDialog::ShowModal(void) return wxID_CANCEL; // Allocate a buffer to receive browse information. - if ((lpBuffer = (LPSTR) pMalloc->Alloc(MAX_PATH)) == NULL) + if ((lpBuffer = (LPTSTR) pMalloc->Alloc(MAX_PATH)) == NULL) { pMalloc->Release(); return wxID_CANCEL; @@ -97,7 +97,7 @@ int wxDirDialog::ShowModal(void) bi.hwndOwner = hWnd; bi.pidlRoot = NULL; // pidlPrograms; bi.pszDisplayName = lpBuffer; - bi.lpszTitle = m_message.mb_str(); // BC++ 4.52 says LPSTR, not LPTSTR? + bi.lpszTitle = m_message; // BC++ 4.52 says LPSTR, not LPTSTR? bi.ulFlags = 0; bi.lpfn = NULL; bi.lParam = 0;