]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/gsocket.cpp
Finished review of the first 1,000 lines of grid.h interface header.
[wxWidgets.git] / src / msw / gsocket.cpp
index 2830549071d8da88cca57b19743582b102da8b62..1730fc7fc77ac0cbc743ed09d77323fe57ee9ad0 100644 (file)
@@ -776,18 +776,6 @@ int GSocket::Write(const char *buffer, int size)
   return ret;
 }
 
-/* GSocket_Select:
- *  Polls the socket to determine its status. This function will
- *  check for the events specified in the 'flags' parameter, and
- *  it will return a mask indicating which operations can be
- *  performed. This function won't block, regardless of the
- *  mode (blocking | nonblocking) of the socket.
- */
-GSocketEventFlags GSocket::Select(GSocketEventFlags flags)
-{
-  return flags & m_detected;
-}
-
 /* Attributes */
 
 /* GSocket_SetNonBlocking:
@@ -1465,7 +1453,7 @@ GSocketError GAddress_INET6_SetPortName(GAddress *address, const char *port,
   se = getservbyname(port, protocol);
   if (!se)
   {
-    if (isdigit(port[0]))
+    if (isdigit((unsigned char) port[0]))
     {
       int port_int;