This commit is contained in:
jst%mozilla.jstenback.com 2006-04-20 03:39:10 +00:00
Родитель 9ae6ecb0d4
Коммит 58843dea31
1 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -430,7 +430,8 @@ nsXMLHttpRequest::SetOnerror(nsIDOMEventListener * aOnerror)
}
/* readonly attribute nsIChannel channel; */
NS_IMETHODIMP nsXMLHttpRequest::GetChannel(nsIChannel **aChannel)
NS_IMETHODIMP
nsXMLHttpRequest::GetChannel(nsIChannel **aChannel)
{
NS_ENSURE_ARG_POINTER(aChannel);
*aChannel = mChannel;
@ -440,7 +441,8 @@ NS_IMETHODIMP nsXMLHttpRequest::GetChannel(nsIChannel **aChannel)
}
/* readonly attribute nsIDOMDocument responseXML; */
NS_IMETHODIMP nsXMLHttpRequest::GetResponseXML(nsIDOMDocument **aResponseXML)
NS_IMETHODIMP
nsXMLHttpRequest::GetResponseXML(nsIDOMDocument **aResponseXML)
{
NS_ENSURE_ARG_POINTER(aResponseXML);
*aResponseXML = nsnull;
@ -752,7 +754,9 @@ nsXMLHttpRequest::CreateEvent(nsEvent* aEvent, nsIDOMEvent** aDOMEvent)
}
void
nsXMLHttpRequest::NotifyEventListeners(nsIDOMEventListener* aHandler, nsISupportsArray* aListeners, nsIDOMEvent* aEvent)
nsXMLHttpRequest::NotifyEventListeners(nsIDOMEventListener* aHandler,
nsISupportsArray* aListeners,
nsIDOMEvent* aEvent)
{
if (!aEvent)
return;