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
76dd2077
Commit
76dd2077
authored
Aug 03, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Fix an incorrect const typecast.
parent
cb886f49
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
iexplore.c
dlls/shdocvw/iexplore.c
+3
-3
No files found.
dlls/shdocvw/iexplore.c
View file @
76dd2077
...
...
@@ -83,7 +83,7 @@ static HMENU get_fav_menu(HMENU menu)
return
GetSubMenu
(
menu
,
1
);
}
static
LP
C
WSTR
get_fav_url_from_id
(
HMENU
menu
,
UINT
id
)
static
LPWSTR
get_fav_url_from_id
(
HMENU
menu
,
UINT
id
)
{
MENUITEMINFOW
item
;
...
...
@@ -98,11 +98,11 @@ static LPCWSTR get_fav_url_from_id(HMENU menu, UINT id)
static
void
free_fav_menu_data
(
HMENU
menu
)
{
LP
C
WSTR
url
;
LPWSTR
url
;
int
i
;
for
(
i
=
0
;
(
url
=
get_fav_url_from_id
(
menu
,
ID_BROWSE_GOTOFAV_FIRST
+
i
));
i
++
)
heap_free
(
(
LPWSTR
)
url
);
heap_free
(
url
);
}
static
int
get_menu_item_count
(
HMENU
menu
)
...
...
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