[EXPLORER] Remove SetBandSiteInfo hack. CORE-9809

This commit is contained in:
Thomas Faber 2018-03-03 08:18:34 +01:00
parent ca22dc9bb5
commit ede8794c4b
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -329,13 +329,6 @@ 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();