X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/283965f0b33d0a7ea025afcc5a87fb162d3ea0a2..c5fe6a5bee092251f08fa204c8857c36af865157:/src/common/url.cpp diff --git a/src/common/url.cpp b/src/common/url.cpp index 7302b06585..cbca1ffeb3 100644 --- a/src/common/url.cpp +++ b/src/common/url.cpp @@ -30,7 +30,6 @@ #include #include -IMPLEMENT_CLASS(wxProtoInfo, wxObject) IMPLEMENT_CLASS(wxURL, wxURI) // Protocols list @@ -427,7 +426,7 @@ wxURLModule::wxURLModule() { // we must be cleaned up before wxSocketModule as otherwise deleting // ms_proxyDefault from our OnExit() won't work (and can actually crash) - AddDependency(wxClassInfo::FindClass(_T("wxSocketModule"))); + AddDependency(wxClassInfo::FindClass(wxT("wxSocketModule"))); } bool wxURLModule::OnInit() @@ -438,7 +437,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(_T("HTTP_PROXY")) ) + if ( wxGetenv(wxT("HTTP_PROXY")) ) { wxURL::ms_useDefaultProxy = true; }