[EXPLORER] HACK: ignore unimplemented SetBandSiteInfo. Patch by Wim Hueskes. CORE-9809 #resolve #comment Thanks!

svn path=/trunk/; revision=71949
This commit is contained in:
Mark Jansen 2016-07-15 23:33:53 +00:00
parent 42c9931850
commit 55cca82ae9

View file

@ -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();