]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/file.cpp
Check accelerators before sending EVT_CHAR
[wxWidgets.git] / src / common / file.cpp
index 925377b194b508b1c5795a2c979c32b7789cad70..a4b94e28ca23a8887510f5560a336fd5db83825f 100644 (file)
@@ -299,7 +299,7 @@ bool wxFile::Close()
 // ----------------------------------------------------------------------------
 
 // read
-size_t wxFile::Read(void *pBuf, size_t nCount)
+ssize_t wxFile::Read(void *pBuf, size_t nCount)
 {
     wxCHECK( (pBuf != NULL) && IsOpened(), 0 );
 
@@ -308,7 +308,7 @@ size_t wxFile::Read(void *pBuf, size_t nCount)
     if ( iRc == -1 )
     {
         wxLogSysError(_("can't read from file descriptor %d"), m_fd);
-        return (size_t)wxInvalidOffset;
+        return wxInvalidOffset;
     }
 
     return iRc;