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
bc588e6a
Commit
bc588e6a
authored
Jun 21, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Jun 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: tooltips: Adjust the type of three loop variables from INT to UINT.
parent
25b79faf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tooltips.c
dlls/comctl32/tooltips.c
+3
-3
No files found.
dlls/comctl32/tooltips.c
View file @
bc588e6a
...
@@ -883,7 +883,7 @@ static INT
...
@@ -883,7 +883,7 @@ static INT
TOOLTIPS_GetToolFromInfoA
(
const
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOA
*
lpToolInfo
)
TOOLTIPS_GetToolFromInfoA
(
const
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOA
*
lpToolInfo
)
{
{
TTTOOL_INFO
*
toolPtr
;
TTTOOL_INFO
*
toolPtr
;
INT
nTool
;
U
INT
nTool
;
for
(
nTool
=
0
;
nTool
<
infoPtr
->
uNumTools
;
nTool
++
)
{
for
(
nTool
=
0
;
nTool
<
infoPtr
->
uNumTools
;
nTool
++
)
{
toolPtr
=
&
infoPtr
->
tools
[
nTool
];
toolPtr
=
&
infoPtr
->
tools
[
nTool
];
...
@@ -910,7 +910,7 @@ static INT
...
@@ -910,7 +910,7 @@ static INT
TOOLTIPS_GetToolFromInfoW
(
const
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
lpToolInfo
)
TOOLTIPS_GetToolFromInfoW
(
const
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
lpToolInfo
)
{
{
TTTOOL_INFO
*
toolPtr
;
TTTOOL_INFO
*
toolPtr
;
INT
nTool
;
U
INT
nTool
;
for
(
nTool
=
0
;
nTool
<
infoPtr
->
uNumTools
;
nTool
++
)
{
for
(
nTool
=
0
;
nTool
<
infoPtr
->
uNumTools
;
nTool
++
)
{
toolPtr
=
&
infoPtr
->
tools
[
nTool
];
toolPtr
=
&
infoPtr
->
tools
[
nTool
];
...
@@ -937,7 +937,7 @@ static INT
...
@@ -937,7 +937,7 @@ static INT
TOOLTIPS_GetToolFromPoint
(
const
TOOLTIPS_INFO
*
infoPtr
,
HWND
hwnd
,
const
POINT
*
lpPt
)
TOOLTIPS_GetToolFromPoint
(
const
TOOLTIPS_INFO
*
infoPtr
,
HWND
hwnd
,
const
POINT
*
lpPt
)
{
{
TTTOOL_INFO
*
toolPtr
;
TTTOOL_INFO
*
toolPtr
;
INT
nTool
;
UINT
nTool
;
for
(
nTool
=
0
;
nTool
<
infoPtr
->
uNumTools
;
nTool
++
)
{
for
(
nTool
=
0
;
nTool
<
infoPtr
->
uNumTools
;
nTool
++
)
{
toolPtr
=
&
infoPtr
->
tools
[
nTool
];
toolPtr
=
&
infoPtr
->
tools
[
nTool
];
...
...
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