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
6d19ac5c
Commit
6d19ac5c
authored
May 17, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 18, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Added stub ITextPara.
parent
aba1e680
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
0 deletions
+51
-0
richole.c
dlls/riched20/richole.c
+0
-0
richole.c
dlls/riched20/tests/richole.c
+51
-0
No files found.
dlls/riched20/richole.c
View file @
6d19ac5c
This diff is collapsed.
Click to expand it.
dlls/riched20/tests/richole.c
View file @
6d19ac5c
...
...
@@ -1140,6 +1140,56 @@ static void test_GetFont(void)
release_interfaces
(
&
hwnd
,
&
reOle
,
&
doc
,
NULL
);
}
static
void
test_GetPara
(
void
)
{
static
const
CHAR
test_text1
[]
=
"TestSomeText"
;
IRichEditOle
*
reOle
=
NULL
;
ITextDocument
*
doc
=
NULL
;
ITextRange
*
range
=
NULL
;
ITextPara
*
para
,
*
para2
;
HRESULT
hr
;
HWND
hwnd
;
create_interfaces
(
&
hwnd
,
&
reOle
,
&
doc
,
NULL
);
SendMessageA
(
hwnd
,
WM_SETTEXT
,
0
,
(
LPARAM
)
test_text1
);
EXPECT_REF
(
reOle
,
3
);
EXPECT_REF
(
doc
,
3
);
hr
=
ITextDocument_Range
(
doc
,
0
,
4
,
&
range
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
EXPECT_REF
(
reOle
,
3
);
EXPECT_REF
(
doc
,
3
);
EXPECT_REF
(
range
,
1
);
hr
=
ITextRange_GetPara
(
range
,
NULL
);
ok
(
hr
==
E_INVALIDARG
,
"got 0x%08x
\n
"
,
hr
);
hr
=
ITextRange_GetPara
(
range
,
&
para
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
EXPECT_REF
(
reOle
,
3
);
EXPECT_REF
(
doc
,
3
);
EXPECT_REF
(
range
,
2
);
EXPECT_REF
(
para
,
1
);
hr
=
ITextRange_GetPara
(
range
,
&
para2
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
para
!=
para2
,
"got %p, %p
\n
"
,
para
,
para2
);
EXPECT_REF
(
reOle
,
3
);
EXPECT_REF
(
doc
,
3
);
EXPECT_REF
(
range
,
3
);
EXPECT_REF
(
para
,
1
);
EXPECT_REF
(
para2
,
1
);
ITextPara_Release
(
para
);
ITextPara_Release
(
para2
);
ITextRange_Release
(
range
);
release_interfaces
(
&
hwnd
,
&
reOle
,
&
doc
,
NULL
);
}
START_TEST
(
richole
)
{
/* Must explicitly LoadLibrary(). The test has no references to functions in
...
...
@@ -1162,4 +1212,5 @@ START_TEST(richole)
test_IOleWindow_GetWindow
();
test_IOleInPlaceSite_GetWindow
();
test_GetFont
();
test_GetPara
();
}
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