ieframe: Compare against the correct IID in ShellUIHelper.

oldstable
Victor Martinez Calvo 2014-05-02 19:20:05 +02:00 committed by Alexandre Julliard
parent d8467aee74
commit 9e828995c9
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ static HRESULT WINAPI ShellUIHelper2_QueryInterface(IShellUIHelper2 *iface, REFI
}else if(IsEqualGUID(&IID_IShellUIHelper, riid)) {
TRACE("(%p)->(IID_IShellUIHelper %p)\n", This, ppv);
*ppv = &This->IShellUIHelper2_iface;
}else if(IsEqualGUID(&IID_IShellUIHelper, riid)) {
}else if(IsEqualGUID(&IID_IShellUIHelper2, riid)) {
TRACE("(%p)->(IID_IShellUIHelper2 %p)\n", This, ppv);
*ppv = &This->IShellUIHelper2_iface;
}else {