From 67acaf80e704295df5136538582193ad02c2b927 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 10 Mar 2005 19:19:09 +0000 Subject: [PATCH] Unicode fix after last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32722 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 4da8511658..dfd818b176 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 ( wxGetenv("HTTP_PROXY") ) + if ( wxGetenv(_T("HTTP_PROXY")) ) { wxURL::ms_useDefaultProxy = true; } -- 2.45.2