]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
[ 1602455 ] [docs] Fix docs for event used by pickers & collapsiblepane
[wxWidgets.git] / docs / changes.txt
index 7e54a29355533a355a1469aea910476d2eccb57c..2cb417171d229fba482c57e64b6405e6ec376529 100644 (file)
@@ -19,10 +19,6 @@ Changes in behaviour not resulting in compilation errors, please read this!
   wxEVT_MOUSE_CAPTURE_LOST event and not call ReleaseMouse() in this case.
 - wxInputStream::GetC() now returns an int in the range 0 - 255 on success
   instead of a char the range -128 - 127.
-- A sequence returned by wxFileSystem::FindFirst()/FindNext() may now be
-  be scoped to a single instance of wxFileSystem.
-- Streams returned by wxFileSystem::OpenFile are not necessarily seekable by
-  default. Open with flags wxFS_READ | wxFS_SEEKABLE if seeking is required.
 
 
 Changes in behaviour which may result in compilation errors
@@ -68,6 +64,11 @@ Deprecated methods since 2.6.x and their replacements
 - wxDC::BeginDrawing() and wxDC::EndDrawing() deprecated, don't use them.
 - wxWindowBase::GetBestFittingSize --> wxWindowBase::GetEffectiveMinSize.
 - wxWindowBase::SetBestFittingSize --> wxWindowBase::SetInitialSize.
+- Seeking on a zip stream returned from wxFileSystem without using the new
+  wxFS_SEEKABLE flags is deprecated. You can still seek, but use the flag.
+- Constructor wxZipInputStream(const wxString& archive, const wxString& file)
+  deprecated in favour of wxFileSystem (other zip ctors are not deprecated).
 
 
 Major new features in 2.8 release
@@ -93,12 +94,18 @@ All:
 
 - wxArrayString::Alloc() now works as reserve() and doesn't clear array contents
 - Fixed long standing bug in wxFileConfig groups renaming (Antti Koivisto).
+- New option wxFS_READ | wxFS_SEEKABLE for wxFileSystem::OpenFile() to return
+  a stream that is seekable.
+- Fixed bug in wxCalendarCtrl::HitTest() when clicking on month change arrows
+- Added wxWindow::GetWindowBorderSize() and corrected wxTreeCtrl::GetBestSize()
+  for a control with borders (Tim Kosse)
 
 wxMSW:
 
 - Fixed version script problems when using configure with cygwin/mingw32.
-- Use system default paper size for printing instead of A4
-- Fix colours when converting wxBitmap with alpha to wxImage (nusi)
+- Use system default paper size for printing instead of A4.
+- Fix colours when converting wxBitmap with alpha to wxImage (nusi).
+
 
 2.7.2
 -----