mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[EXPLORER] HACK: ignore unimplemented SetBandSiteInfo. Patch by Wim Hueskes. CORE-9809 #resolve #comment Thanks!
svn path=/trunk/; revision=71949
This commit is contained in:
parent
42c9931850
commit
55cca82ae9
1 changed files with 7 additions and 0 deletions
|
@ -334,6 +334,13 @@ public:
|
|||
bsi.dwStyle = (Locked ? BSIS_LOCKED | BSIS_NOGRIPPER : BSIS_AUTOGRIPPER);
|
||||
|
||||
hRet = m_BandSite->SetBandSiteInfo(&bsi);
|
||||
|
||||
/* HACK for CORE-9809 ! */
|
||||
if (hRet == E_NOTIMPL)
|
||||
hRet = S_OK;
|
||||
else
|
||||
ERR("HACK for CORE-9809 no longer needed!\n");
|
||||
|
||||
if (SUCCEEDED(hRet))
|
||||
{
|
||||
hRet = Update();
|
||||
|
|
Loading…
Reference in a new issue