From: Julian Smart Date: Tue, 23 Sep 2003 17:00:17 +0000 (+0000) Subject: Fixed bug [ 754596 ] wxUSE_CONSTRAINTS 0 breaks AutoLayout() with sizers X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/987263fe1974dac46a38d6d623557ccf89a25992?ds=inline Fixed bug [ 754596 ] wxUSE_CONSTRAINTS 0 breaks AutoLayout() with sizers git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/deprecated/tbarsmpl.cpp b/contrib/src/deprecated/tbarsmpl.cpp index 4bac4dfeb5..b33814360c 100644 --- a/contrib/src/deprecated/tbarsmpl.cpp +++ b/contrib/src/deprecated/tbarsmpl.cpp @@ -398,10 +398,8 @@ void wxToolBarSimple::OnPaint (wxPaintEvent& WXUNUSED(event)) void wxToolBarSimple::OnSize (wxSizeEvent& WXUNUSED(event)) { -#if wxUSE_CONSTRAINTS if (GetAutoLayout()) Layout(); -#endif AdjustScrollbars(); } diff --git a/src/generic/panelg.cpp b/src/generic/panelg.cpp index aae2a32368..ab3ad11848 100644 --- a/src/generic/panelg.cpp +++ b/src/generic/panelg.cpp @@ -151,9 +151,9 @@ void wxPanel::OnSysColourChanged(wxSysColourChangedEvent& event) void wxPanel::OnSize(wxSizeEvent& event) { -#if wxUSE_CONSTRAINTS if (GetAutoLayout()) Layout(); +#if wxUSE_CONSTRAINTS #if defined(__WXPM__) else { diff --git a/src/generic/scrlwing.cpp b/src/generic/scrlwing.cpp index 03165ffd11..deea726fb6 100644 --- a/src/generic/scrlwing.cpp +++ b/src/generic/scrlwing.cpp @@ -1243,10 +1243,8 @@ void wxGenericScrolledWindow::DoSetVirtualSize(int x, int y) wxPanel::DoSetVirtualSize( x, y ); AdjustScrollbars(); -#if wxUSE_CONSTRAINTS if (GetAutoLayout()) Layout(); -#endif } void wxGenericScrolledWindow::OnPaint(wxPaintEvent& event)