Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
791d000f
Commit
791d000f
authored
Oct 22, 2011
by
Thomas Faber
Committed by
Alexandre Julliard
Oct 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Simplify ME_PrepareParagraphForWrapping.
parent
f3a3ce8a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
27 deletions
+17
-27
wrap.c
dlls/riched20/wrap.c
+17
-27
No files found.
dlls/riched20/wrap.c
View file @
791d000f
...
...
@@ -481,38 +481,28 @@ static int ME_GetParaLineSpace(ME_Context* c, ME_Paragraph* para)
}
static
void
ME_PrepareParagraphForWrapping
(
ME_Context
*
c
,
ME_DisplayItem
*
tp
)
{
ME_DisplayItem
*
p
,
*
pRow
;
ME_DisplayItem
*
p
;
tp
->
member
.
para
.
nWidth
=
0
;
/* remove all items that will be reinserted by paragraph wrapper anyway */
/* remove row start items as they will be reinserted by the
* paragraph wrapper anyway */
tp
->
member
.
para
.
nRows
=
0
;
for
(
p
=
tp
->
next
;
p
!=
tp
->
member
.
para
.
next_para
;
p
=
p
->
next
)
{
switch
(
p
->
type
)
{
case
diStartRow
:
pRow
=
p
;
p
=
p
->
prev
;
ME_Remove
(
pRow
);
ME_DestroyDisplayItem
(
pRow
);
break
;
default:
break
;
for
(
p
=
tp
->
next
;
p
!=
tp
->
member
.
para
.
next_para
;
p
=
p
->
next
)
{
if
(
p
->
type
==
diStartRow
)
{
ME_DisplayItem
*
pRow
=
p
;
p
=
p
->
prev
;
ME_Remove
(
pRow
);
ME_DestroyDisplayItem
(
pRow
);
}
}
/* join runs that can be joined, set up flags */
for
(
p
=
tp
->
next
;
p
!=
tp
->
member
.
para
.
next_para
;
p
=
p
->
next
)
{
switch
(
p
->
type
)
{
case
diStartRow
:
assert
(
0
);
break
;
/* should have deleted it */
case
diRun
:
while
(
p
->
next
->
type
==
diRun
)
{
/* FIXME */
if
(
ME_CanJoinRuns
(
&
p
->
member
.
run
,
&
p
->
next
->
member
.
run
))
{
ME_JoinRuns
(
c
->
editor
,
p
);
}
else
break
;
}
break
;
default:
break
;
/* join runs that can be joined */
for
(
p
=
tp
->
next
;
p
!=
tp
->
member
.
para
.
next_para
;
p
=
p
->
next
)
{
assert
(
p
->
type
!=
diStartRow
);
/* should have been deleted above */
if
(
p
->
type
==
diRun
)
{
while
(
p
->
next
->
type
==
diRun
&&
/* FIXME */
ME_CanJoinRuns
(
&
p
->
member
.
run
,
&
p
->
next
->
member
.
run
))
{
ME_JoinRuns
(
c
->
editor
,
p
);
}
}
}
}
...
...
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