From: Vadim Zeitlin Date: Tue, 28 Sep 2004 12:05:29 +0000 (+0000) Subject: wxFile::Length() return type fix (replaces last check in) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c4761f668a8ea043a690385fc34c15126afbc6df wxFile::Length() return type fix (replaces last check in) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29490 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 8d5410623a..bf24c944ed 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -1120,7 +1120,7 @@ bool wxMsgCatalogFile::Load(const wxChar *szDirPrefix, const wxChar *szName0, return false; // get the file size - size_t nSize = fileMsg.Length(); + wxFileOffset nSize = fileMsg.Length(); if ( nSize == wxInvalidOffset ) return false;