]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/intl.cpp
don't return wxLIST_HITTEST_ONITEMICON from HitTest() when the muse is clicked to...
[wxWidgets.git] / src / common / intl.cpp
index 4b164126f3f3fedcc9ac09dd1e9b4575b72211a4..11c6340293b796683170c1b188d6dccb80e05aa7 100644 (file)
@@ -1119,20 +1119,20 @@ bool wxMsgCatalogFile::Load(const wxChar *szDirPrefix, const wxChar *szName0,
   if ( !fileMsg.IsOpened() )
     return false;
 
-  // get the file size
-  wxFileOffset nSize = fileMsg.Length();
+  // get the file size (assume it is less than 4Gb...)
+  size_t nSize = fileMsg.Length();
   if ( nSize == wxInvalidOffset )
     return false;
 
   // read the whole file in memory
   m_pData = new size_t8[nSize];
-  if ( fileMsg.Read(m_pData, nSize) != (size_t)nSize ) {
+  if ( fileMsg.Read(m_pData, nSize) != nSize ) {
     wxDELETEA(m_pData);
     return false;
   }
 
   // examine header
-  bool bValid = (size_t)nSize > sizeof(wxMsgCatalogHeader);
+  bool bValid = nSize > sizeof(wxMsgCatalogHeader);
 
   wxMsgCatalogHeader *pHeader = (wxMsgCatalogHeader *)m_pData;
   if ( bValid ) {