mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:52:57 +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);
|
bsi.dwStyle = (Locked ? BSIS_LOCKED | BSIS_NOGRIPPER : BSIS_AUTOGRIPPER);
|
||||||
|
|
||||||
hRet = m_BandSite->SetBandSiteInfo(&bsi);
|
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))
|
if (SUCCEEDED(hRet))
|
||||||
{
|
{
|
||||||
hRet = Update();
|
hRet = Update();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue