]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/sizer.cpp
another VC6 fix; i reused inside for
[wxWidgets.git] / src / common / sizer.cpp
index 3b18a56b597c18aac0fc98387310fcc6c2edca71..bb2ca4fe1635e5ed8bd421a6322593103d454de2 100644 (file)
@@ -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 )
     {