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
dc604f4a
Commit
dc604f4a
authored
Nov 12, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Get rid of an unused parameter in prepare_for_binding.
parent
52826af9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
binding.h
dlls/mshtml/binding.h
+1
-1
htmlwindow.c
dlls/mshtml/htmlwindow.c
+1
-1
persist.c
dlls/mshtml/persist.c
+4
-4
No files found.
dlls/mshtml/binding.h
View file @
dc604f4a
...
...
@@ -106,7 +106,7 @@ HRESULT hlink_frame_navigate(HTMLDocument*,LPCWSTR,nsChannel*,DWORD,BOOL*) DECLS
HRESULT
create_doc_uri
(
HTMLWindow
*
,
WCHAR
*
,
nsWineURI
**
)
DECLSPEC_HIDDEN
;
HRESULT
load_nsuri
(
HTMLWindow
*
,
nsWineURI
*
,
nsChannelBSC
*
,
DWORD
)
DECLSPEC_HIDDEN
;
HRESULT
set_moniker
(
HTMLDocument
*
,
IMoniker
*
,
IBindCtx
*
,
nsChannelBSC
*
,
BOOL
)
DECLSPEC_HIDDEN
;
void
prepare_for_binding
(
HTMLDocument
*
,
IMoniker
*
,
IBindCtx
*
,
BOOL
)
DECLSPEC_HIDDEN
;
void
prepare_for_binding
(
HTMLDocument
*
,
IMoniker
*
,
BOOL
)
DECLSPEC_HIDDEN
;
HRESULT
create_channelbsc
(
IMoniker
*
,
WCHAR
*
,
BYTE
*
,
DWORD
,
nsChannelBSC
**
)
DECLSPEC_HIDDEN
;
HRESULT
channelbsc_load_stream
(
nsChannelBSC
*
,
IStream
*
)
DECLSPEC_HIDDEN
;
...
...
dlls/mshtml/htmlwindow.c
View file @
dc604f4a
...
...
@@ -1960,7 +1960,7 @@ static HRESULT WINAPI HTMLPrivateWindow_SuperNavigate(IHTMLPrivateWindow *iface,
return
hres
;
}
prepare_for_binding
(
&
This
->
doc_obj
->
basedoc
,
mon
,
NULL
,
TRUE
);
prepare_for_binding
(
&
This
->
doc_obj
->
basedoc
,
mon
,
TRUE
);
hres
=
IUri_GetScheme
(
uri
,
&
scheme
);
...
...
dlls/mshtml/persist.c
View file @
dc604f4a
...
...
@@ -232,7 +232,7 @@ static void set_downloading_task_destr(task_t *_task)
heap_free
(
task
);
}
void
prepare_for_binding
(
HTMLDocument
*
This
,
IMoniker
*
mon
,
IBindCtx
*
pibc
,
BOOL
navigated_binding
)
void
prepare_for_binding
(
HTMLDocument
*
This
,
IMoniker
*
mon
,
BOOL
navigated_binding
)
{
HRESULT
hres
;
...
...
@@ -485,7 +485,7 @@ static HRESULT WINAPI PersistMoniker_Load(IPersistMoniker *iface, BOOL fFullyAva
}
}
prepare_for_binding
(
This
,
pimkName
,
pibc
,
FALSE
);
prepare_for_binding
(
This
,
pimkName
,
FALSE
);
hres
=
set_moniker
(
This
,
pimkName
,
pibc
,
NULL
,
TRUE
);
if
(
FAILED
(
hres
))
return
hres
;
...
...
@@ -756,7 +756,7 @@ static HRESULT WINAPI PersistStreamInit_Load(IPersistStreamInit *iface, LPSTREAM
return
hres
;
}
prepare_for_binding
(
This
,
mon
,
NULL
,
FALSE
);
prepare_for_binding
(
This
,
mon
,
FALSE
);
hres
=
set_moniker
(
This
,
mon
,
NULL
,
NULL
,
TRUE
);
IMoniker_Release
(
mon
);
if
(
FAILED
(
hres
))
...
...
@@ -815,7 +815,7 @@ static HRESULT WINAPI PersistStreamInit_InitNew(IPersistStreamInit *iface)
return
hres
;
}
prepare_for_binding
(
This
,
mon
,
NULL
,
FALSE
);
prepare_for_binding
(
This
,
mon
,
FALSE
);
hres
=
set_moniker
(
This
,
mon
,
NULL
,
NULL
,
FALSE
);
IMoniker_Release
(
mon
);
if
(
FAILED
(
hres
))
...
...
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