From 3df0e7b9c7df8324be49b42a71fb4ac7492253f8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 31 Oct 2013 12:05:07 +0000 Subject: [PATCH] Mention incompatible wxGridBagSizer::AddGrowable{Col,Row}() change. It now has no effect if called before adding the columns/rows to the sizer. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75111 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/changes.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index c6f27df232..24bbb555e7 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -239,6 +239,9 @@ Changes in behaviour not resulting in compilation errors, please read this! - wxAny now uses C locale format for the floating point numbers and not the current locale one, i.e. decimal point is always used. +- wxGridBagSizer::AddGrowable{Col,Row}() must now be called after the items are + added to the sizer, i.e. the columns and rows already exist. + Changes in behaviour which may result in compilation errors -----------------------------------------------------------