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
2eb59ee2
Commit
2eb59ee2
authored
Jan 11, 2006
by
Phil Krylov
Committed by
Alexandre Julliard
Jan 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Added \n to trace output.
parent
cf173911
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
list.c
dlls/riched20/list.c
+5
-5
No files found.
dlls/riched20/list.c
View file @
2eb59ee2
...
...
@@ -168,20 +168,20 @@ void ME_DumpDocument(ME_TextBuffer *buffer)
switch
(
pItem
->
type
)
{
case
diTextStart
:
TRACE
(
"Start"
);
TRACE
(
"Start
\n
"
);
break
;
case
diParagraph
:
TRACE
(
"
\n
Paragraph(ofs=%d)
"
,
pItem
->
member
.
para
.
nCharOfs
);
TRACE
(
"
Paragraph(ofs=%d)
\n
"
,
pItem
->
member
.
para
.
nCharOfs
);
break
;
case
diStartRow
:
TRACE
(
" - StartRow"
);
TRACE
(
" - StartRow
\n
"
);
break
;
case
diRun
:
TRACE
(
" - Run(
\"
%s
\"
, %d)"
,
debugstr_w
(
pItem
->
member
.
run
.
strText
->
szData
),
TRACE
(
" - Run(
\"
%s
\"
, %d)
\n
"
,
debugstr_w
(
pItem
->
member
.
run
.
strText
->
szData
),
pItem
->
member
.
run
.
nCharOfs
);
break
;
case
diTextEnd
:
TRACE
(
"
\n
End(ofs=%d)
\n
"
,
pItem
->
member
.
para
.
nCharOfs
);
TRACE
(
"End(ofs=%d)
\n
"
,
pItem
->
member
.
para
.
nCharOfs
);
break
;
default:
break
;
...
...
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