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
93b947fd
Commit
93b947fd
authored
May 24, 2011
by
David Hedberg
Committed by
Alexandre Julliard
May 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32/tests: Fix some copypaste errors.
parent
0d96d26f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
itemdlg.c
dlls/comdlg32/tests/itemdlg.c
+10
-10
No files found.
dlls/comdlg32/tests/itemdlg.c
View file @
93b947fd
...
...
@@ -217,13 +217,13 @@ static BOOL test_instantiation(void)
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IFileDialog_Release
(
pfd
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IFileDialogCustomize
,
(
void
**
)
&
p
fd
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IFileDialogCustomize
,
(
void
**
)
&
p
unk
);
todo_wine
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
I
FileDialog_Release
(
pfd
);
if
(
SUCCEEDED
(
hr
))
I
Unknown_Release
(
punk
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IFileSaveDialog
,
(
void
**
)
&
pfsd
);
ok
(
hr
==
E_NOINTERFACE
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IFile
Open
Dialog_Release
(
pfsd
);
if
(
SUCCEEDED
(
hr
))
IFile
Save
Dialog_Release
(
pfsd
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IServiceProvider
,
(
void
**
)
&
psp
);
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
...
...
@@ -248,9 +248,9 @@ static BOOL test_instantiation(void)
IServiceProvider_Release
(
psp
);
}
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IFileDialogEvents
,
(
void
**
)
&
p
fd
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IFileDialogEvents
,
(
void
**
)
&
p
unk
);
ok
(
hr
==
E_NOINTERFACE
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
I
FileDialogEvents_Release
(
pfd
);
if
(
SUCCEEDED
(
hr
))
I
Unknown_Release
(
punk
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IExplorerBrowser
,
(
void
**
)
&
punk
);
ok
(
hr
==
E_NOINTERFACE
,
"got 0x%08x.
\n
"
,
hr
);
...
...
@@ -310,17 +310,17 @@ static BOOL test_instantiation(void)
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IFileDialog_Release
(
pfd
);
hr
=
IFileSaveDialog_QueryInterface
(
pfsd
,
&
IID_IFileDialogCustomize
,
(
void
**
)
&
p
fd
);
hr
=
IFileSaveDialog_QueryInterface
(
pfsd
,
&
IID_IFileDialogCustomize
,
(
void
**
)
&
p
unk
);
todo_wine
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
I
FileDialogCustomize_Release
(
pfd
);
if
(
SUCCEEDED
(
hr
))
I
Unknown_Release
(
punk
);
hr
=
IFile
Open
Dialog_QueryInterface
(
pfsd
,
&
IID_IFileOpenDialog
,
(
void
**
)
&
pfod
);
hr
=
IFile
Save
Dialog_QueryInterface
(
pfsd
,
&
IID_IFileOpenDialog
,
(
void
**
)
&
pfod
);
ok
(
hr
==
E_NOINTERFACE
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IFileOpenDialog_Release
(
pfod
);
hr
=
IFileSaveDialog_QueryInterface
(
pfsd
,
&
IID_IFileDialogEvents
,
(
void
**
)
&
p
fd
);
hr
=
IFileSaveDialog_QueryInterface
(
pfsd
,
&
IID_IFileDialogEvents
,
(
void
**
)
&
p
unk
);
ok
(
hr
==
E_NOINTERFACE
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
I
FileDialogEvents
_Release
(
pfd
);
if
(
SUCCEEDED
(
hr
))
I
Unknown
_Release
(
pfd
);
hr
=
IFileSaveDialog_QueryInterface
(
pfsd
,
&
IID_IExplorerBrowser
,
(
void
**
)
&
punk
);
ok
(
hr
==
E_NOINTERFACE
,
"got 0x%08x.
\n
"
,
hr
);
...
...
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