Commit 1cf886d7 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

ieframe: Add missing return statements.

parent 1e1ad5ba
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment