ieframe: Add missing return statements.

This commit is contained in:
Detlef Riekenberg 2012-01-25 00:00:12 +01:00 committed by Alexandre Julliard
parent 1e1ad5ba2f
commit 1cf886d7c9
1 changed files with 3 additions and 1 deletions

View File

@ -589,9 +589,11 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
switch(nCmdID) {
case CMDID_EXPLORER_UPDATEHISTORY:
update_travellog(This);
break;
return S_OK;
default:
FIXME("Unimplemented cmd %d of CGID_Explorer\n", nCmdID);
return E_NOTIMPL;
}
}