Commit ac653688 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Added nsIChannel::GetRequestMethod implementation.

parent 0085383f
......@@ -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,
......
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