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
f8da57ca
Commit
f8da57ca
authored
Feb 15, 2011
by
Amine Khaldi
Committed by
Alexandre Julliard
Feb 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Fix a c89 conformance issue in ITextImpl->editor->rcFormat initialization.
parent
de8dc80c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
txtsrv.c
dlls/riched20/txtsrv.c
+5
-1
No files found.
dlls/riched20/txtsrv.c
View file @
f8da57ca
...
...
@@ -88,7 +88,11 @@ HRESULT WINAPI CreateTextServices(IUnknown * pUnkOuter,
ITextImpl
->
lpVtbl
=
&
textservices_Vtbl
;
ITextImpl
->
editor
=
ME_MakeEditor
(
pITextHost
,
FALSE
);
ITextImpl
->
editor
->
exStyleFlags
=
0
;
ITextImpl
->
editor
->
rcFormat
=
(
RECT
){
0
,
0
,
0
,
0
};
ITextImpl
->
editor
->
rcFormat
.
left
=
0
;
ITextImpl
->
editor
->
rcFormat
.
top
=
0
;
ITextImpl
->
editor
->
rcFormat
.
right
=
0
;
ITextImpl
->
editor
->
rcFormat
.
bottom
=
0
;
ME_HandleMessage
(
ITextImpl
->
editor
,
WM_CREATE
,
0
,
0
,
TRUE
,
&
hres
);
if
(
pUnkOuter
)
...
...
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