Use new open call on the transport instead of LoadUrl....

This commit is contained in:
mscott%netscape.com 1999-02-05 00:51:28 +00:00
Родитель 94a70e212b
Коммит 7d5b5f344c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -139,7 +139,7 @@ TestConsumer::TestConsumer(nsITransport * transport)
void TestConsumer::LoadURL(nsIURL * urlToLoad)
{
// give the transport layer the url to load
m_transport->LoadURL(urlToLoad);
m_transport->Open(urlToLoad);
m_runningURL = PR_TRUE;
m_waitingForData = PR_TRUE;