NULL is not bool.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30296 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-11-05 19:42:15 +00:00
parent 13220cca72
commit 142b15c5a1

View File

@@ -287,7 +287,7 @@ wxInputStream *wxURL::GetInputStream()
// When we use a proxy, we have to pass the whole URL to it. // When we use a proxy, we have to pass the whole URL to it.
wxInputStream *the_i_stream; wxInputStream *the_i_stream;
if (m_useProxy != NULL) if (!m_useProxy)
{ {
the_i_stream = m_protocol->GetInputStream(m_url); the_i_stream = m_protocol->GetInputStream(m_url);
} }