From 82287aae32033acb9b9c90ba4f9eb97466360053 Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Sun, 9 Dec 2007 21:53:46 +0000 Subject: [PATCH] another VC6 fix; i reused inside for git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50601 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/sizer.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/common/sizer.cpp b/src/common/sizer.cpp index 3b18a56b59..bb2ca4fe16 100644 --- a/src/common/sizer.cpp +++ b/src/common/sizer.cpp @@ -1858,7 +1858,8 @@ void wxBoxSizer::RecalcSizes() // Inform child items about the size in minor direction, that can // change how much free space we have in major dir and how to distribute it. int majorMinSum = 0; - for ( wxSizerItemList::const_iterator i = m_children.begin(); + wxSizerItemList::const_iterator i ; + for ( i = m_children.begin(); i != m_children.end(); ++i ) { @@ -1890,7 +1891,7 @@ void wxBoxSizer::RecalcSizes() wxPoint pt(m_position); int totalProportion = m_totalProportion; - for ( wxSizerItemList::const_iterator i = m_children.begin(); + for ( i = m_children.begin(); i != m_children.end(); ++i ) { -- 2.50.0