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
cf13e8a3
Commit
cf13e8a3
authored
May 17, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
May 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Avoid using long.
parent
eb558c44
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
editor.c
dlls/riched20/editor.c
+1
-1
rtf.h
dlls/riched20/rtf.h
+1
-1
editor.c
dlls/riched20/tests/editor.c
+1
-1
No files found.
dlls/riched20/editor.c
View file @
cf13e8a3
...
...
@@ -289,7 +289,7 @@ static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, ME_InStrea
TRACE
(
"%08x %p
\n
"
,
dwFormat
,
stream
);
do
{
long
nWideChars
=
0
;
LONG
nWideChars
=
0
;
if
(
!
stream
->
dwSize
)
{
...
...
dlls/riched20/rtf.h
View file @
cf13e8a3
...
...
@@ -1122,7 +1122,7 @@ struct _RTF_Info {
char
*
rtfTextBuf
;
int
rtfTextLen
;
long
rtfLineNum
;
int
rtfLineNum
;
int
rtfLinePos
;
...
...
dlls/riched20/tests/editor.c
View file @
cf13e8a3
...
...
@@ -4318,7 +4318,7 @@ const struct exsetsel_s exsetsel_tests[] = {
static
void
check_EM_EXSETSEL
(
HWND
hwnd
,
const
struct
exsetsel_s
*
setsel
,
int
id
)
{
CHARRANGE
cr
;
long
result
;
LRESULT
result
;
int
start
,
end
;
cr
.
cpMin
=
setsel
->
min
;
...
...
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