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
3cc1ef6b
Commit
3cc1ef6b
authored
Sep 14, 2017
by
Huw Davies
Committed by
Alexandre Julliard
Sep 14, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Remove an unused parameter.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
47ddc575
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
editor.h
dlls/riched20/editor.h
+1
-1
paint.c
dlls/riched20/paint.c
+1
-1
richole.c
dlls/riched20/richole.c
+1
-2
No files found.
dlls/riched20/editor.h
View file @
3cc1ef6b
...
...
@@ -248,7 +248,7 @@ int ME_GetParaBorderWidth(const ME_Context *c, int flags) DECLSPEC_HIDDEN;
/* richole.c */
LRESULT
CreateIRichEditOle
(
IUnknown
*
outer_unk
,
ME_TextEditor
*
editor
,
LPVOID
*
ppvObj
)
DECLSPEC_HIDDEN
;
void
ME_DrawOLE
(
ME_Context
*
c
,
int
x
,
int
y
,
ME_Run
*
run
,
ME_Paragraph
*
para
,
BOOL
selected
)
DECLSPEC_HIDDEN
;
void
ME_DrawOLE
(
ME_Context
*
c
,
int
x
,
int
y
,
ME_Run
*
run
,
BOOL
selected
)
DECLSPEC_HIDDEN
;
void
ME_GetOLEObjectSize
(
const
ME_Context
*
c
,
ME_Run
*
run
,
SIZE
*
pSize
)
DECLSPEC_HIDDEN
;
void
ME_CopyReObject
(
REOBJECT
*
dst
,
const
REOBJECT
*
src
)
DECLSPEC_HIDDEN
;
void
ME_DeleteReObject
(
REOBJECT
*
reo
)
DECLSPEC_HIDDEN
;
...
...
dlls/riched20/paint.c
View file @
3cc1ef6b
...
...
@@ -481,7 +481,7 @@ static void ME_DrawRun(ME_Context *c, int x, int y, ME_DisplayItem *rundi, ME_Pa
}
if
(
run
->
nFlags
&
MERF_GRAPHICS
)
ME_DrawOLE
(
c
,
x
,
y
,
run
,
para
,
(
runofs
>=
nSelFrom
)
&&
(
runofs
<
nSelTo
));
ME_DrawOLE
(
c
,
x
,
y
,
run
,
(
runofs
>=
nSelFrom
)
&&
(
runofs
<
nSelTo
));
else
{
ME_DrawTextWithStyle
(
c
,
run
,
x
,
y
,
nSelFrom
-
runofs
,
nSelTo
-
runofs
,
...
...
dlls/riched20/richole.c
View file @
3cc1ef6b
...
...
@@ -5284,8 +5284,7 @@ void ME_GetOLEObjectSize(const ME_Context *c, ME_Run *run, SIZE *pSize)
}
}
void
ME_DrawOLE
(
ME_Context
*
c
,
int
x
,
int
y
,
ME_Run
*
run
,
ME_Paragraph
*
para
,
BOOL
selected
)
void
ME_DrawOLE
(
ME_Context
*
c
,
int
x
,
int
y
,
ME_Run
*
run
,
BOOL
selected
)
{
IDataObject
*
ido
;
FORMATETC
fmt
;
...
...
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