]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/app.cpp
Work around "possibly uninitialized variable" warning in wxFileName.
[wxWidgets.git] / src / gtk1 / app.cpp
index 81632fb1a1dfe1cce1b79f3cec01639ece92b3ce..66fced32c3d7690f9740b666c4cf2bb9e6cefbf0 100644 (file)
@@ -246,7 +246,7 @@ int wxPoll(wxPollFd *ufds, unsigned int nfds, int timeout)
     unsigned int i;
     for ( i = 0; i < nfds; i++ )
     {
     unsigned int i;
     for ( i = 0; i < nfds; i++ )
     {
-        wxASSERT_MSG( ufds[i].fd < FD_SETSIZE, _T("fd out of range") );
+        wxASSERT_MSG( ufds[i].fd < FD_SETSIZE, wxT("fd out of range") );
 
         if ( ufds[i].events & G_IO_IN )
             wxFD_SET(ufds[i].fd, &readfds);
 
         if ( ufds[i].events & G_IO_IN )
             wxFD_SET(ufds[i].fd, &readfds);