mshtml: Added nsIChannel::GetRequestMethod implementation.

This commit is contained in:
Jacek Caban 2010-08-03 21:40:30 +02:00 committed by Alexandre Julliard
parent 0085383fc7
commit ac65368835
1 changed files with 3 additions and 2 deletions

View File

@ -1041,9 +1041,10 @@ static nsresult NSAPI nsChannel_GetRequestMethod(nsIHttpChannel *iface, nsACStri
{
nsChannel *This = NSCHANNEL_THIS(iface);
FIXME("(%p)->(%p)\n", This, aRequestMethod);
TRACE("(%p)->(%p)\n", This, aRequestMethod);
return NS_ERROR_NOT_IMPLEMENTED;
nsACString_SetData(aRequestMethod, request_method_strings[This->request_method]);
return NS_OK;
}
static nsresult NSAPI nsChannel_SetRequestMethod(nsIHttpChannel *iface,