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
aa25b1f8
Commit
aa25b1f8
authored
Aug 09, 2004
by
Lionel Ulmer
Committed by
Alexandre Julliard
Aug 09, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not initialize variables before going into the Render short-cut.
parent
1e268017
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
text.c
dlls/x11drv/text.c
+5
-2
No files found.
dlls/x11drv/text.c
View file @
aa25b1f8
...
...
@@ -57,14 +57,17 @@ X11DRV_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
BOOL
result
=
TRUE
;
HRGN
saved_region
=
0
;
POINT
pt
;
UINT
align
=
GetTextAlign
(
physDev
->
hdc
)
;
INT
charExtra
=
GetTextCharacterExtra
(
physDev
->
hdc
)
;
UINT
align
;
INT
charExtra
;
if
(
physDev
->
has_gdi_font
)
return
X11DRV_XRender_ExtTextOut
(
physDev
,
x
,
y
,
flags
,
lprect
,
wstr
,
count
,
lpDx
,
breakExtra
);
if
(
!
X11DRV_SetupGCForText
(
physDev
))
return
TRUE
;
align
=
GetTextAlign
(
physDev
->
hdc
);
charExtra
=
GetTextCharacterExtra
(
physDev
->
hdc
);
pfo
=
XFONT_GetFontObject
(
physDev
->
font
);
font
=
pfo
->
fs
;
...
...
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