Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
bd1b3c10
Commit
bd1b3c10
authored
Feb 14, 2017
by
Alex Henrie
Committed by
Alexandre Julliard
Feb 14, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Use localized "Path does not exist" string.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d5292b1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
filedlg.c
dlls/comdlg32/filedlg.c
+3
-3
No files found.
dlls/comdlg32/filedlg.c
View file @
bd1b3c10
...
...
@@ -4027,9 +4027,9 @@ static BOOL BrowseSelectedFolder(HWND hwnd)
if
(
FAILED
(
IShellBrowser_BrowseObject
(
fodInfos
->
Shell
.
FOIShellBrowser
,
pidlSelection
,
SBSP_RELATIVE
)
)
)
{
static
const
WCHAR
notexist
[]
=
{
'P'
,
'a'
,
't'
,
'h'
,
' '
,
'd'
,
'o'
,
'e'
,
's'
,
' '
,
'n'
,
'o'
,
't'
,
' '
,
'e'
,
'x'
,
'i'
,
's'
,
't'
,
0
}
;
MessageBoxW
(
hwnd
,
notexist
,
fodInfos
->
title
,
MB_OK
|
MB_ICONEXCLAMATION
);
WCHAR
buf
[
64
];
LoadStringW
(
COMDLG32_hInstance
,
IDS_PATHNOTEXISTING
,
buf
,
sizeof
(
buf
)
/
sizeof
(
WCHAR
)
)
;
MessageBoxW
(
hwnd
,
buf
,
fodInfos
->
title
,
MB_OK
|
MB_ICONEXCLAMATION
);
}
bBrowseSelFolder
=
TRUE
;
if
(
fodInfos
->
ofnInfos
->
Flags
&
OFN_EXPLORER
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment