]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utils.cpp
Acutally use the m_maxChars parameter value instead of ignoring it
[wxWidgets.git] / src / msw / utils.cpp
index 5b083fbd03e6557acb916b3664d36bf3f10d8bdd..b70c6226894ab52b15e5d372f5e33140d06cf18d 100644 (file)
@@ -180,9 +180,7 @@ bool wxGetFullHostName(wxChar *buf, int maxSize)
     // shouldn't use winsock.dll (a.k.a. ws2_32.dll) at all so only use this
     // code if we link with it anyhow
 #if wxUSE_SOCKETS
-    //FIXME __DIGITALMARS__ why is using sockets not properly turned off in setup.h ??
-    // find which library should contain sockets for Digital Mars CE April 2003
-#ifndef __DIGITALMARS__
+
     WSADATA wsa;
     if ( WSAStartup(MAKEWORD(1, 1), &wsa) == 0 )
     {
@@ -218,7 +216,6 @@ bool wxGetFullHostName(wxChar *buf, int maxSize)
             return TRUE;
         }
     }
-#endif //__DIGITALMARS__
 
 #endif // wxUSE_SOCKETS