]> git.saurik.com Git - wxWidgets.git/commitdiff
don't give error messages if ws2_32.dll is not available in wxGetHostName()
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 7 Feb 2004 19:25:05 +0000 (19:25 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 7 Feb 2004 19:25:05 +0000 (19:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25577 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/utils.cpp

index 7da8065ba3b4c1b7ff1c99ab6279fe40a33c0575..3e3721f596195e36af07645a8e0b06833372593a 100644 (file)
@@ -156,7 +156,10 @@ bool wxGetFullHostName(wxChar *buf, int maxSize)
     // TODO should use GetComputerNameEx() when available
 
     // we don't want to always link with Winsock DLL as we might not use it at
-    // all, so load it dynamically here if needed
+    // all, so load it dynamically here if needed (and don't complain if it is
+    // missing, we handle this)
+    wxLogNull noLog;
+
     wxDynamicLibrary dllWinsock(_T("ws2_32.dll"), wxDL_VERBATIM);
     if ( dllWinsock.IsLoaded() )
     {