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
9064506f
Commit
9064506f
authored
Jun 08, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jun 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Constify some variables.
parent
b210eeb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
tooltips.c
dlls/comctl32/tooltips.c
+11
-11
No files found.
dlls/comctl32/tooltips.c
View file @
9064506f
...
...
@@ -1020,7 +1020,7 @@ TOOLTIPS_Activate (TOOLTIPS_INFO *infoPtr, BOOL activate)
static
LRESULT
TOOLTIPS_AddToolA
(
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOA
lpToolInfo
)
TOOLTIPS_AddToolA
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOA
*
lpToolInfo
)
{
TTTOOL_INFO
*
toolPtr
;
INT
nResult
;
...
...
@@ -1109,7 +1109,7 @@ TOOLTIPS_AddToolA (TOOLTIPS_INFO *infoPtr, LPTTTOOLINFOA lpToolInfo)
static
LRESULT
TOOLTIPS_AddToolW
(
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOW
lpToolInfo
)
TOOLTIPS_AddToolW
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
lpToolInfo
)
{
TTTOOL_INFO
*
toolPtr
;
INT
nResult
;
...
...
@@ -1376,7 +1376,7 @@ TOOLTIPS_EnumToolsW (const TOOLTIPS_INFO *infoPtr, UINT uIndex, LPTTTOOLINFOW lp
}
static
LRESULT
TOOLTIPS_GetBubbleSize
(
const
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOW
lpToolInfo
)
TOOLTIPS_GetBubbleSize
(
const
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
lpToolInfo
)
{
INT
nTool
;
SIZE
size
;
...
...
@@ -1711,7 +1711,7 @@ TOOLTIPS_HitTestW (const TOOLTIPS_INFO *infoPtr, LPTTHITTESTINFOW lptthit)
static
LRESULT
TOOLTIPS_NewToolRectA
(
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOA
lpti
)
TOOLTIPS_NewToolRectA
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOA
*
lpti
)
{
INT
nTool
;
...
...
@@ -1733,7 +1733,7 @@ TOOLTIPS_NewToolRectA (TOOLTIPS_INFO *infoPtr, LPTTTOOLINFOA lpti)
static
LRESULT
TOOLTIPS_NewToolRectW
(
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOW
lpti
)
TOOLTIPS_NewToolRectW
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
lpti
)
{
INT
nTool
;
...
...
@@ -1867,7 +1867,7 @@ TOOLTIPS_SetDelayTime (TOOLTIPS_INFO *infoPtr, DWORD duration, INT nTime)
static
LRESULT
TOOLTIPS_SetMargin
(
TOOLTIPS_INFO
*
infoPtr
,
LPRECT
lpRect
)
TOOLTIPS_SetMargin
(
TOOLTIPS_INFO
*
infoPtr
,
const
RECT
*
lpRect
)
{
infoPtr
->
rcMargin
.
left
=
lpRect
->
left
;
infoPtr
->
rcMargin
.
right
=
lpRect
->
right
;
...
...
@@ -1970,7 +1970,7 @@ TOOLTIPS_SetTitleW (TOOLTIPS_INFO *infoPtr, UINT_PTR uTitleIcon, LPCWSTR pszTitl
static
LRESULT
TOOLTIPS_SetToolInfoA
(
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOA
lpToolInfo
)
TOOLTIPS_SetToolInfoA
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOA
*
lpToolInfo
)
{
TTTOOL_INFO
*
toolPtr
;
INT
nTool
;
...
...
@@ -2026,7 +2026,7 @@ TOOLTIPS_SetToolInfoA (TOOLTIPS_INFO *infoPtr, LPTTTOOLINFOA lpToolInfo)
static
LRESULT
TOOLTIPS_SetToolInfoW
(
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOW
lpToolInfo
)
TOOLTIPS_SetToolInfoW
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
lpToolInfo
)
{
TTTOOL_INFO
*
toolPtr
;
INT
nTool
;
...
...
@@ -2090,7 +2090,7 @@ TOOLTIPS_SetToolInfoW (TOOLTIPS_INFO *infoPtr, LPTTTOOLINFOW lpToolInfo)
static
LRESULT
TOOLTIPS_TrackActivate
(
TOOLTIPS_INFO
*
infoPtr
,
BOOL
track_activate
,
LPTTTOOLINFOA
lpToolInfo
)
TOOLTIPS_TrackActivate
(
TOOLTIPS_INFO
*
infoPtr
,
BOOL
track_activate
,
const
TTTOOLINFOA
*
lpToolInfo
)
{
if
(
track_activate
)
{
...
...
@@ -2149,7 +2149,7 @@ TOOLTIPS_Update (TOOLTIPS_INFO *infoPtr)
static
LRESULT
TOOLTIPS_UpdateTipTextA
(
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOA
lpToolInfo
)
TOOLTIPS_UpdateTipTextA
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOA
*
lpToolInfo
)
{
TTTOOL_INFO
*
toolPtr
;
INT
nTool
;
...
...
@@ -2204,7 +2204,7 @@ TOOLTIPS_UpdateTipTextA (TOOLTIPS_INFO *infoPtr, LPTTTOOLINFOA lpToolInfo)
static
LRESULT
TOOLTIPS_UpdateTipTextW
(
TOOLTIPS_INFO
*
infoPtr
,
LPTTTOOLINFOW
lpToolInfo
)
TOOLTIPS_UpdateTipTextW
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
lpToolInfo
)
{
TTTOOL_INFO
*
toolPtr
;
INT
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