use wxGetenv() instead of getenv() which doesn't exist under WinCE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32719 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-03-10 19:14:04 +00:00
parent 5e7f00a137
commit 766763d092

View File

@@ -423,7 +423,7 @@ bool wxURLModule::OnInit()
// down the program startup (especially if there is no DNS server
// available, in which case it may take up to 1 minute)
if ( getenv("HTTP_PROXY") )
if ( wxGetenv("HTTP_PROXY") )
{
wxURL::ms_useDefaultProxy = true;
}