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
66019452
Commit
66019452
authored
Nov 19, 2008
by
Ricardo Filipe
Committed by
Alexandre Julliard
Nov 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Remove dead stores (llvm/clang).
parent
6c24fb1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
toolbar.c
dlls/comctl32/toolbar.c
+2
-3
No files found.
dlls/comctl32/toolbar.c
View file @
66019452
...
...
@@ -542,7 +542,7 @@ TOOLBAR_DrawArrow (HDC hdc, INT left, INT top, COLORREF clr)
MoveToEx
(
hdc
,
x
,
y
,
NULL
);
LineTo
(
hdc
,
x
+
3
,
y
++
);
x
++
;
MoveToEx
(
hdc
,
x
,
y
,
NULL
);
LineTo
(
hdc
,
x
+
1
,
y
++
);
LineTo
(
hdc
,
x
+
1
,
y
);
SelectObject
(
hdc
,
hOldPen
);
DeleteObject
(
hPen
);
}
...
...
@@ -1151,7 +1151,7 @@ TOOLBAR_Refresh (HWND hwnd, HDC hdc, const PAINTSTRUCT *ps)
tbcd
.
nmcd
.
dwDrawStage
=
CDDS_POSTPAINT
;
tbcd
.
nmcd
.
hdc
=
hdc
;
tbcd
.
nmcd
.
rc
=
ps
->
rcPaint
;
ntfret
=
TOOLBAR_SendNotify
(
&
tbcd
.
nmcd
.
hdr
,
infoPtr
,
NM_CUSTOMDRAW
);
TOOLBAR_SendNotify
(
&
tbcd
.
nmcd
.
hdr
,
infoPtr
,
NM_CUSTOMDRAW
);
}
}
...
...
@@ -1426,7 +1426,6 @@ TOOLBAR_WrapToolbar( HWND hwnd, DWORD dwStyle )
TRACE
(
"wrap point 5 btn %d style %02x, x=%d, cx=%d
\n
"
,
i
,
btnPtr
[
i
].
fsStyle
,
x
,
cx
);
btnPtr
[
i
].
fsState
|=
TBSTATE_WRAP
;
bFound
=
TRUE
;
x
=
infoPtr
->
nIndent
;
if
(
btnPtr
[
i
].
fsStyle
&
BTNS_SEP
)
bButtonWrap
=
FALSE
;
...
...
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