added wxFileSize_t, changed types of wxFile methods/parameters once again

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-10-15 00:01:00 +00:00
parent a752b8c4e0
commit 93e0db9a80
5 changed files with 21 additions and 17 deletions

View File

@@ -150,10 +150,10 @@ INCOMPATIBLE CHANGES SINCE 2.4.x
- wxNotebookSizer and wxBookCtrlSizer are now deprecated -- they are no longer
needed, you can treat wxNotebook as any other control and put it directly
into the sizer that was wxNotebookSizer's parent sizer in old code.
- wxFile methods now return wxFileOffset which may be a 64 bit integer type,
even on 32 bit platforms, instead of off_t and so the return value of
wxFile::Length(), for example, shouldn't be assigned to off_t variable any
more (the compiler might warn you about this).
- wxFile methods now return either wxFileOffset or wxFileSize_t which may be a
64 bit integer type, even on 32 bit platforms, instead of off_t and so the
return value of wxFile::Length(), for example, shouldn't be assigned to off_t
variable any more (the compiler might warn you about this)
- wxListItem::m_data is now of type wxUIntPtr, not long, for compatibility
with 64 bit systems