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
cc90540c
Commit
cc90540c
authored
Aug 30, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Sep 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Cast-qual warnings fix.
parent
2429d1b6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
propsheet.c
dlls/comctl32/propsheet.c
+2
-2
toolbar.c
dlls/comctl32/toolbar.c
+1
-1
trackbar.c
dlls/comctl32/trackbar.c
+2
-2
No files found.
dlls/comctl32/propsheet.c
View file @
cc90540c
...
...
@@ -448,7 +448,7 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
else
{
HRSRC
hResource
=
FindResourceA
(
lppsp
->
hInstance
,
(
LPSTR
)
lppsp
->
u
.
pszTemplate
,
(
LP
C
STR
)
lppsp
->
u
.
pszTemplate
,
(
LPSTR
)
RT_DIALOG
);
HGLOBAL
hTemplate
=
LoadResource
(
lppsp
->
hInstance
,
hResource
);
...
...
@@ -1424,7 +1424,7 @@ static BOOL PROPSHEET_CreatePage(HWND hwndParent,
HANDLE
hTemplate
;
hResource
=
FindResourceA
(
ppshpage
->
hInstance
,
(
LPSTR
)
ppshpage
->
u
.
pszTemplate
,
(
LP
C
STR
)
ppshpage
->
u
.
pszTemplate
,
(
LPSTR
)
RT_DIALOG
);
if
(
!
hResource
)
return
FALSE
;
...
...
dlls/comctl32/toolbar.c
View file @
cc90540c
...
...
@@ -3301,7 +3301,7 @@ TOOLBAR_Customize (HWND hwnd)
return
FALSE
;
ret
=
DialogBoxIndirectParamW
((
HINSTANCE
)
GetWindowLongPtrW
(
hwnd
,
GWLP_HINSTANCE
),
(
LPDLGTEMPLATEW
)
template
,
(
LP
C
DLGTEMPLATEW
)
template
,
hwnd
,
TOOLBAR_CustomizeDialogProc
,
(
LPARAM
)
&
custInfo
);
...
...
dlls/comctl32/trackbar.c
View file @
cc90540c
...
...
@@ -1048,8 +1048,8 @@ TRACKBAR_GetNumTics (TRACKBAR_INFO *infoPtr)
static
int
comp_tics
(
const
void
*
ap
,
const
void
*
bp
)
{
DWORD
a
=
*
((
DWORD
*
)
ap
)
;
DWORD
b
=
*
((
DWORD
*
)
bp
)
;
const
DWORD
a
=
*
(
const
DWORD
*
)
ap
;
const
DWORD
b
=
*
(
const
DWORD
*
)
bp
;
TRACE
(
"(a=%ld, b=%ld)
\n
"
,
a
,
b
);
if
(
a
<
b
)
return
-
1
;
...
...
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