]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utils.cpp
background colour of a combobox may now be set (bug 805442)
[wxWidgets.git] / 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() )
     {