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
97ecd468
Commit
97ecd468
authored
May 18, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 19, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/toolbar: Use already cached control window style.
parent
b9760069
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
toolbar.c
dlls/comctl32/toolbar.c
+2
-2
No files found.
dlls/comctl32/toolbar.c
View file @
97ecd468
...
...
@@ -3612,7 +3612,7 @@ TOOLBAR_GetState (const TOOLBAR_INFO *infoPtr, WPARAM wParam)
static
LRESULT
TOOLBAR_GetStyle
(
const
TOOLBAR_INFO
*
infoPtr
)
{
return
GetWindowLongW
(
infoPtr
->
hwndSelf
,
GWL_STYLE
)
;
return
infoPtr
->
dwStyle
;
}
...
...
@@ -5491,7 +5491,7 @@ TOOLBAR_LButtonDblClk (TOOLBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
if
(
nHit
>=
0
)
TOOLBAR_LButtonDown
(
infoPtr
,
wParam
,
lParam
);
else
if
(
GetWindowLongW
(
infoPtr
->
hwndSelf
,
GWL_STYLE
)
&
CCS_ADJUSTABLE
)
else
if
(
infoPtr
->
dwStyle
&
CCS_ADJUSTABLE
)
TOOLBAR_Customize
(
infoPtr
);
return
0
;
...
...
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