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
3c10a3ef
Commit
3c10a3ef
authored
Nov 04, 2020
by
Huw Davies
Committed by
Alexandre Julliard
Nov 04, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Use a cell helper in the split paragraph undo function.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
04158801
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
undo.c
dlls/riched20/undo.c
+2
-3
No files found.
dlls/riched20/undo.c
View file @
3c10a3ef
...
...
@@ -399,9 +399,8 @@ static void ME_PlayUndoItem(ME_TextEditor *editor, struct undo_item *undo)
new_para
->
border
=
undo
->
u
.
split_para
.
border
;
if
(
paraFlags
)
{
ME_DisplayItem
*
pCell
=
new_para
->
pCell
;
pCell
->
member
.
cell
.
nRightBoundary
=
undo
->
u
.
split_para
.
cell_right_boundary
;
pCell
->
member
.
cell
.
border
=
undo
->
u
.
split_para
.
cell_border
;
para_cell
(
new_para
)
->
nRightBoundary
=
undo
->
u
.
split_para
.
cell_right_boundary
;
para_cell
(
new_para
)
->
border
=
undo
->
u
.
split_para
.
cell_border
;
}
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