X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7981795a892349d41316daf222a3bf548102b482..9c21efe30131c78c25763446e0754e2a0b54dc30:/contrib/src/xml/xmlpars.cpp diff --git a/contrib/src/xml/xmlpars.cpp b/contrib/src/xml/xmlpars.cpp index 7dec0e47bf..ba56cb3c13 100644 --- a/contrib/src/xml/xmlpars.cpp +++ b/contrib/src/xml/xmlpars.cpp @@ -142,15 +142,15 @@ static bool LoadLibxml() wxLogNull lg; #ifdef __UNIX__ gs_libxmlDLL.Handle = - wxDllLoader::LoadLibrary(_T("wxlibxml.so.2"), &gs_libxmlLoaded); + wxDllLoader::LoadLibrary(wxT("wxlibxml.so.2"), &gs_libxmlLoaded); if (!gs_libxmlLoaded) gs_libxmlDLL.Handle = - wxDllLoader::LoadLibrary(_T("libxml.so.2"), &gs_libxmlLoaded); + wxDllLoader::LoadLibrary(wxT("libxml.so.2"), &gs_libxmlLoaded); #endif #ifdef __WXMSW__ gs_libxmlDLL.Handle = - wxDllLoader::LoadLibrary(_T("wxlibxml2.dll"), &gs_libxmlLoaded); + wxDllLoader::LoadLibrary(wxT("wxlibxml2.dll"), &gs_libxmlLoaded); if (!gs_libxmlLoaded) gs_libxmlDLL.Handle = - wxDllLoader::LoadLibrary(_T("libxml2.dll"), &gs_libxmlLoaded); + wxDllLoader::LoadLibrary(wxT("libxml2.dll"), &gs_libxmlLoaded); #endif } @@ -162,7 +162,7 @@ static bool LoadLibxml() #define LOAD_SYMBOL(sym) \ gs_libxmlDLL.sym = \ - (type_##sym)wxDllLoader::GetSymbol(gs_libxmlDLL.Handle, _T(#sym)); \ + (type_##sym)wxDllLoader::GetSymbol(gs_libxmlDLL.Handle, wxT(#sym)); \ if (!gs_libxmlDLL.sym) \ { \ ReleaseLibxml(); \