]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/intl.cpp
wxHashMap compatible typecasting.
[wxWidgets.git] / src / common / intl.cpp
index 8d5410623a01749f9d012d5633f1cceebf3928bb..11c6340293b796683170c1b188d6dccb80e05aa7 100644 (file)
@@ -1119,7 +1119,7 @@ bool wxMsgCatalogFile::Load(const wxChar *szDirPrefix, const wxChar *szName0,
   if ( !fileMsg.IsOpened() )
     return false;
 
-  // get the file size
+  // get the file size (assume it is less than 4Gb...)
   size_t nSize = fileMsg.Length();
   if ( nSize == wxInvalidOffset )
     return false;
@@ -1132,7 +1132,7 @@ bool wxMsgCatalogFile::Load(const wxChar *szDirPrefix, const wxChar *szName0,
   }
 
   // examine header
-  bool bValid = (size_t)nSize > sizeof(wxMsgCatalogHeader);
+  bool bValid = nSize > sizeof(wxMsgCatalogHeader);
 
   wxMsgCatalogHeader *pHeader = (wxMsgCatalogHeader *)m_pData;
   if ( bValid ) {