From 766763d092c1106e08c90dc4950841a471461e3c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 10 Mar 2005 19:14:04 +0000 Subject: [PATCH] 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 --- src/common/url.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/url.cpp b/src/common/url.cpp index 9686971ff9..4da8511658 100644 --- a/src/common/url.cpp +++ b/src/common/url.cpp @@ -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; } -- 2.45.2