]> git.saurik.com Git - wxWidgets.git/commitdiff
wxFD_SETSIZE --> FD_SETSIZE
authorRobin Dunn <robin@alldunn.com>
Sat, 11 Nov 2006 20:38:46 +0000 (20:38 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 11 Nov 2006 20:38:46 +0000 (20:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43318 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/app.cpp
src/gtk1/app.cpp

index e60e5ea94cf8d4b277d31e691c5ebd155168fbe8..4d398e896d31f76625e5a138fc2ef6eb48c1749f 100644 (file)
@@ -281,7 +281,7 @@ int wxPoll(wxPollFd *ufds, unsigned int nfds, int timeout)
     unsigned int i;
     for ( i = 0; i < nfds; i++ )
     {
-        wxASSERT_MSG( ufds[i].fd < wxFD_SETSIZE, _T("fd out of range") );
+        wxASSERT_MSG( ufds[i].fd < FD_SETSIZE, _T("fd out of range") );
 
         if ( ufds[i].events & G_IO_IN )
             wxFD_SET(ufds[i].fd, &readfds);
index 748f9d57d43d19b2550e89bfb4c2955dc22aac35..c7d9c5b71f83b5f912088492d9bc517fe3a2b8a6 100644 (file)
@@ -313,7 +313,7 @@ int wxPoll(wxPollFd *ufds, unsigned int nfds, int timeout)
     unsigned int i;
     for ( i = 0; i < nfds; i++ )
     {
-        wxASSERT_MSG( ufds[i].fd < wxFD_SETSIZE, _T("fd out of range") );
+        wxASSERT_MSG( ufds[i].fd < FD_SETSIZE, _T("fd out of range") );
 
         if ( ufds[i].events & G_IO_IN )
             wxFD_SET(ufds[i].fd, &readfds);