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
10834ee5
Commit
10834ee5
authored
Sep 28, 2007
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Oct 01, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Fix 3 tiny bugs in bidi.
parent
6b2a6a2b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
bidi.c
dlls/gdi32/bidi.c
+3
-3
No files found.
dlls/gdi32/bidi.c
View file @
10834ee5
...
@@ -1091,13 +1091,13 @@ BOOL BIDI_Reorder(
...
@@ -1091,13 +1091,13 @@ BOOL BIDI_Reorder(
classify
(
lpOutString
+
done
,
chartype
,
uCount
-
done
);
classify
(
lpOutString
+
done
,
chartype
,
uCount
-
done
);
/* limit text to first block */
/* limit text to first block */
i
=
resolveParagraphs
(
chartype
,
uCount
-
done
);
i
=
resolveParagraphs
(
chartype
,
uCount
-
done
);
for
(
j
=
0
;
j
<
i
-
1
;
++
j
)
for
(
j
=
0
;
j
<
i
;
++
j
)
switch
(
chartype
[
j
])
switch
(
chartype
[
j
])
{
{
case
B
:
case
B
:
case
S
:
case
S
:
case
WS
:
case
WS
:
case
ON
:
chartype
[
i
]
=
N
;
case
ON
:
chartype
[
j
]
=
N
;
default:
continue
;
default:
continue
;
}
}
...
@@ -1113,7 +1113,7 @@ BOOL BIDI_Reorder(
...
@@ -1113,7 +1113,7 @@ BOOL BIDI_Reorder(
baselevel
=
0
;
baselevel
=
0
;
break
;
break
;
}
}
else
if
(
chartype
[
j
]
==
R
)
else
if
(
chartype
[
j
]
==
R
||
chartype
[
j
]
==
AL
)
{
{
baselevel
=
1
;
baselevel
=
1
;
break
;
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