]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utilsexc.cpp
symbols.txt is no longer.
[wxWidgets.git] / src / msw / utilsexc.cpp
index 3894aaeea704e9b6c63574a1fde7838844ba894c..e550fca890a1276545555fb6dcb8c5a5a7505a1f 100644 (file)
@@ -341,6 +341,10 @@ wxPipeInputStream::~wxPipeInputStream()
 
 bool wxPipeInputStream::IsAvailable() const
 {
+    // FIXME
+#ifdef __WXWINE__
+    return FALSE;
+#else
     if ( !IsOpened() )
         return FALSE;
 
@@ -374,6 +378,7 @@ bool wxPipeInputStream::IsAvailable() const
     }
 
     return nAvailable != 0;
+#endif
 }
 
 size_t wxPipeInputStream::OnSysRead(void *buffer, size_t len)