ieframe: Add missing return statements.
This commit is contained in:
parent
1e1ad5ba2f
commit
1cf886d7c9
|
@ -589,9 +589,11 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
|
||||||
switch(nCmdID) {
|
switch(nCmdID) {
|
||||||
case CMDID_EXPLORER_UPDATEHISTORY:
|
case CMDID_EXPLORER_UPDATEHISTORY:
|
||||||
update_travellog(This);
|
update_travellog(This);
|
||||||
break;
|
return S_OK;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
FIXME("Unimplemented cmd %d of CGID_Explorer\n", nCmdID);
|
FIXME("Unimplemented cmd %d of CGID_Explorer\n", nCmdID);
|
||||||
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue