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
4da84a13
Commit
4da84a13
authored
May 21, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 21, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tooltips: Add a helper to free tool text.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2f7e7863
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
30 deletions
+18
-30
tooltips.c
dlls/comctl32/tooltips.c
+18
-30
No files found.
dlls/comctl32/tooltips.c
View file @
4da84a13
...
...
@@ -1140,6 +1140,16 @@ static void TOOLTIPS_ResetSubclass (const TTTOOL_INFO *toolPtr)
TOOLTIPS_SubclassProc
,
1
,
0
);
}
static
void
TOOLTIPS_FreeToolText
(
TTTOOL_INFO
*
toolPtr
)
{
if
(
toolPtr
->
lpszText
)
{
if
(
!
IS_INTRESOURCE
(
toolPtr
->
lpszText
)
&&
toolPtr
->
lpszText
!=
LPSTR_TEXTCALLBACKW
)
Free
(
toolPtr
->
lpszText
);
toolPtr
->
lpszText
=
NULL
;
}
}
static
LRESULT
TOOLTIPS_DelToolT
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
ti
,
BOOL
isW
)
{
...
...
@@ -1163,14 +1173,8 @@ TOOLTIPS_DelToolT (TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *ti, BOOL isW)
/* make sure the tooltip has disappeared before deleting it */
TOOLTIPS_Hide
(
infoPtr
);
/* delete text string */
toolPtr
=
&
infoPtr
->
tools
[
nTool
];
if
(
toolPtr
->
lpszText
)
{
if
(
(
toolPtr
->
lpszText
!=
LPSTR_TEXTCALLBACKW
)
&&
!
IS_INTRESOURCE
(
toolPtr
->
lpszText
)
)
Free
(
toolPtr
->
lpszText
);
}
TOOLTIPS_FreeToolText
(
toolPtr
);
TOOLTIPS_ResetSubclass
(
toolPtr
);
/* delete tool from tool list */
...
...
@@ -1635,7 +1639,6 @@ TOOLTIPS_SetTitleT (TOOLTIPS_INFO *infoPtr, UINT_PTR uTitleIcon, LPCWSTR pszTitl
return
TRUE
;
}
static
LRESULT
TOOLTIPS_SetToolInfoT
(
TOOLTIPS_INFO
*
infoPtr
,
const
TTTOOLINFOW
*
ti
,
BOOL
isW
)
{
...
...
@@ -1660,12 +1663,7 @@ TOOLTIPS_SetToolInfoT (TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *ti, BOOL isW)
toolPtr
->
rect
=
ti
->
rect
;
toolPtr
->
hinst
=
ti
->
hinst
;
if
(
(
toolPtr
->
lpszText
)
&&
!
IS_INTRESOURCE
(
toolPtr
->
lpszText
)
)
{
if
(
toolPtr
->
lpszText
!=
LPSTR_TEXTCALLBACKW
)
Free
(
toolPtr
->
lpszText
);
toolPtr
->
lpszText
=
NULL
;
}
TOOLTIPS_FreeToolText
(
toolPtr
);
if
(
IS_INTRESOURCE
(
ti
->
lpszText
))
{
TRACE
(
"set string id %x
\n
"
,
LOWORD
(
ti
->
lpszText
));
...
...
@@ -1788,6 +1786,8 @@ TOOLTIPS_UpdateTipTextT (TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *ti, BOOL isW
/* copy tool text */
toolPtr
->
hinst
=
ti
->
hinst
;
TOOLTIPS_FreeToolText
(
toolPtr
);
if
(
IS_INTRESOURCE
(
ti
->
lpszText
)){
toolPtr
->
lpszText
=
ti
->
lpszText
;
}
...
...
@@ -1795,12 +1795,6 @@ TOOLTIPS_UpdateTipTextT (TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *ti, BOOL isW
if
(
ti
->
lpszText
==
LPSTR_TEXTCALLBACKW
)
toolPtr
->
lpszText
=
LPSTR_TEXTCALLBACKW
;
else
{
if
(
(
toolPtr
->
lpszText
)
&&
!
IS_INTRESOURCE
(
toolPtr
->
lpszText
)
)
{
if
(
toolPtr
->
lpszText
!=
LPSTR_TEXTCALLBACKW
)
Free
(
toolPtr
->
lpszText
);
toolPtr
->
lpszText
=
NULL
;
}
if
(
ti
->
lpszText
)
{
if
(
isW
)
{
INT
len
=
lstrlenW
(
ti
->
lpszText
);
...
...
@@ -1867,17 +1861,11 @@ TOOLTIPS_Destroy (TOOLTIPS_INFO *infoPtr)
/* free tools */
if
(
infoPtr
->
tools
)
{
for
(
i
=
0
;
i
<
infoPtr
->
uNumTools
;
i
++
)
{
toolPtr
=
&
infoPtr
->
tools
[
i
];
if
(
toolPtr
->
lpszText
)
{
if
(
(
toolPtr
->
lpszText
!=
LPSTR_TEXTCALLBACKW
)
&&
!
IS_INTRESOURCE
(
toolPtr
->
lpszText
)
)
{
Free
(
toolPtr
->
lpszText
);
toolPtr
->
lpszText
=
NULL
;
}
}
for
(
i
=
0
;
i
<
infoPtr
->
uNumTools
;
i
++
)
{
toolPtr
=
&
infoPtr
->
tools
[
i
];
TOOLTIPS_FreeToolText
(
toolPtr
);
TOOLTIPS_ResetSubclass
(
toolPtr
);
}
...
...
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