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
77c1856d
Commit
77c1856d
authored
Oct 24, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Remove an unused DC field.
parent
4dbacf05
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
dc.c
dlls/gdi32/dc.c
+1
-3
gdi_private.h
dlls/gdi32/gdi_private.h
+0
-1
No files found.
dlls/gdi32/dc.c
View file @
77c1856d
...
...
@@ -351,7 +351,6 @@ INT nulldrv_SaveDC( PHYSDEV dev )
newdc
->
hBrush
=
dc
->
hBrush
;
newdc
->
hFont
=
dc
->
hFont
;
newdc
->
hBitmap
=
dc
->
hBitmap
;
newdc
->
hDevice
=
dc
->
hDevice
;
newdc
->
hPalette
=
dc
->
hPalette
;
newdc
->
ROPmode
=
dc
->
ROPmode
;
newdc
->
polyFillMode
=
dc
->
polyFillMode
;
...
...
@@ -417,7 +416,7 @@ INT nulldrv_SaveDC( PHYSDEV dev )
/***********************************************************************
*
restore_dc_state
*
nulldrv_RestoreDC
*/
BOOL
nulldrv_RestoreDC
(
PHYSDEV
dev
,
INT
level
)
{
...
...
@@ -437,7 +436,6 @@ BOOL nulldrv_RestoreDC( PHYSDEV dev, INT level )
if
(
!
PATH_RestorePath
(
dc
,
dcs
))
return
FALSE
;
dc
->
layout
=
dcs
->
layout
;
dc
->
hDevice
=
dcs
->
hDevice
;
dc
->
ROPmode
=
dcs
->
ROPmode
;
dc
->
polyFillMode
=
dcs
->
polyFillMode
;
dc
->
stretchBltMode
=
dcs
->
stretchBltMode
;
...
...
dlls/gdi32/gdi_private.h
View file @
77c1856d
...
...
@@ -100,7 +100,6 @@ typedef struct tagDC
HBRUSH
hBrush
;
HFONT
hFont
;
HBITMAP
hBitmap
;
HANDLE
hDevice
;
HPALETTE
hPalette
;
GdiFont
*
gdiFont
;
...
...
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