Module: wine Branch: master Commit: 6ae22663c0c2fe6af0f2787683d2a171262a66d0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6ae22663c0c2fe6af0f2787683...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Aug 19 14:52:31 2010 +0200
mshtml: Don't use start_binding in IPersistStreamInit::InitNew.
---
dlls/mshtml/persist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mshtml/persist.c b/dlls/mshtml/persist.c index 76e3773..89a056f 100644 --- a/dlls/mshtml/persist.c +++ b/dlls/mshtml/persist.c @@ -736,7 +736,7 @@ static HRESULT WINAPI PersistStreamInit_InitNew(IPersistStreamInit *iface) if(FAILED(hres)) return hres;
- return start_binding(This->window, NULL, (BSCallback*)This->window->bscallback, NULL); + return channelbsc_load_stream(This->window->bscallback, NULL); }
#undef PERSTRINIT_THIS