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
d0e860b8
Commit
d0e860b8
authored
Sep 20, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Sep 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Sign-compare warnings fix.
parent
4f1fabf3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
syslink.c
dlls/comctl32/syslink.c
+1
-1
theming.c
dlls/comctl32/theming.c
+2
-2
No files found.
dlls/comctl32/syslink.c
View file @
d0e860b8
...
...
@@ -136,7 +136,7 @@ static PDOC_ITEM SYSLINK_AppendDocItem (SYSLINK_INFO *infoPtr, LPCWSTR Text, UIN
{
PDOC_ITEM
Item
;
textlen
=
min
(
textlen
,
l
strlenW
(
Text
));
textlen
=
min
(
textlen
,
strlenW
(
Text
));
Item
=
Alloc
(
FIELD_OFFSET
(
DOC_ITEM
,
Text
[
textlen
+
1
]));
if
(
Item
==
NULL
)
{
...
...
dlls/comctl32/theming.c
View file @
d0e860b8
...
...
@@ -113,7 +113,7 @@ static const WNDPROC subclassProcs[NUM_SUBCLASSES] = {
*/
void
THEMING_Initialize
(
void
)
{
int
i
;
unsigned
int
i
;
static
const
WCHAR
subclassPropName
[]
=
{
'C'
,
'C'
,
'3'
,
'2'
,
'T'
,
'h'
,
'e'
,
'm'
,
'i'
,
'n'
,
'g'
,
'S'
,
'u'
,
'b'
,
'C'
,
'l'
,
0
};
static
const
WCHAR
refDataPropName
[]
=
...
...
@@ -161,7 +161,7 @@ void THEMING_Initialize (void)
*/
void
THEMING_Uninitialize
(
void
)
{
int
i
;
unsigned
int
i
;
if
(
!
atSubclassProp
)
return
;
/* not initialized */
...
...
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