Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
28821a92
Commit
28821a92
authored
Aug 24, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20/tests: Use proper method macros.
parent
fcda3c7a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
richole.c
dlls/riched20/tests/richole.c
+2
-2
txtsrv.c
dlls/riched20/tests/txtsrv.c
+1
-1
No files found.
dlls/riched20/tests/richole.c
View file @
28821a92
...
...
@@ -76,7 +76,7 @@ START_TEST(richole)
ok
(
res
,
"SendMessage
\n
"
);
ok
(
reOle
!=
NULL
,
"EM_GETOLEINTERFACE
\n
"
);
hres
=
I
Unknown
_QueryInterface
(
reOle
,
&
IID_ITextDocument
,
hres
=
I
RichEditOle
_QueryInterface
(
reOle
,
&
IID_ITextDocument
,
(
void
**
)
&
txtDoc
);
ok
(
hres
==
S_OK
,
"IRichEditOle_QueryInterface
\n
"
);
ok
(
txtDoc
!=
NULL
,
"IRichEditOle_QueryInterface
\n
"
);
...
...
@@ -104,7 +104,7 @@ START_TEST(richole)
IUnknown_Release
(
punk
);
ITextDocument_Release
(
txtDoc
);
I
Unknown
_Release
(
reOle
);
I
RichEditOle
_Release
(
reOle
);
DestroyWindow
(
w
);
/* Methods should return CO_E_RELEASED if the backing document has
...
...
dlls/riched20/tests/txtsrv.c
View file @
28821a92
...
...
@@ -657,7 +657,7 @@ static BOOL init_texthost(void)
static
void
free_texthost
(
void
)
{
I
Unknown
_Release
(
txtserv
);
I
TextServices
_Release
(
txtserv
);
CoTaskMemFree
(
dummyTextHost
);
}
...
...
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