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
117efddd
Commit
117efddd
authored
Aug 04, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32/tests: Fix a couple of test failures on NT4.
parent
c309883a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
filedlg.c
dlls/comdlg32/tests/filedlg.c
+3
-2
No files found.
dlls/comdlg32/tests/filedlg.c
View file @
117efddd
...
...
@@ -226,7 +226,8 @@ static UINT_PTR CALLBACK create_view_window2_hook(HWND dlg, UINT msg, WPARAM wPa
hr
=
IShellView2_GetCurrentInfo
(
shell_view2
,
&
folder_settings
);
ok
(
SUCCEEDED
(
hr
),
"GetCurrentInfo returned %#x
\n
"
,
hr
);
ok
(
folder_settings
.
ViewMode
==
FVM_DETAILS
,
"view mode is %d, expected FVM_DETAILS
\n
"
,
ok
(
folder_settings
.
ViewMode
==
FVM_DETAILS
||
broken
(
folder_settings
.
ViewMode
==
FVM_LIST
),
/* nt4 */
"view mode is %d, expected FVM_DETAILS
\n
"
,
folder_settings
.
ViewMode
);
cleanup:
...
...
@@ -1032,7 +1033,7 @@ static UINT_PTR WINAPI test_extension_wndproc(HWND dlg, UINT msg, WPARAM wParam,
{
HWND
parent
=
GetParent
(
dlg
);
if
(
msg
==
WM_NOTIFY
)
{
SetTimer
(
dlg
,
0
,
100
,
0
);
SetTimer
(
dlg
,
0
,
100
0
,
0
);
PostMessage
(
parent
,
WM_COMMAND
,
IDOK
,
0
);
}
if
(
msg
==
WM_TIMER
)
{
...
...
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