Commit bd1b3c10 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

comdlg32: Use localized "Path does not exist" string.

parent d5292b1f
...@@ -4027,9 +4027,9 @@ static BOOL BrowseSelectedFolder(HWND hwnd) ...@@ -4027,9 +4027,9 @@ static BOOL BrowseSelectedFolder(HWND hwnd)
if ( FAILED( IShellBrowser_BrowseObject( fodInfos->Shell.FOIShellBrowser, if ( FAILED( IShellBrowser_BrowseObject( fodInfos->Shell.FOIShellBrowser,
pidlSelection, SBSP_RELATIVE ) ) ) pidlSelection, SBSP_RELATIVE ) ) )
{ {
static const WCHAR notexist[] = {'P','a','t','h',' ','d','o','e','s', WCHAR buf[64];
' ','n','o','t',' ','e','x','i','s','t',0}; LoadStringW( COMDLG32_hInstance, IDS_PATHNOTEXISTING, buf, sizeof(buf)/sizeof(WCHAR) );
MessageBoxW( hwnd, notexist, fodInfos->title, MB_OK | MB_ICONEXCLAMATION ); MessageBoxW( hwnd, buf, fodInfos->title, MB_OK | MB_ICONEXCLAMATION );
} }
bBrowseSelFolder = TRUE; bBrowseSelFolder = TRUE;
if(fodInfos->ofnInfos->Flags & OFN_EXPLORER) if(fodInfos->ofnInfos->Flags & OFN_EXPLORER)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment