From: Vadim Zeitlin Date: Sat, 8 Dec 2012 00:37:33 +0000 (+0000) Subject: Fix copy/paste error in UnsetConstraints(). X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/30915cf22f6fb91ccd3cf2c0c9e954ae3a4fdb13 Fix copy/paste error in UnsetConstraints(). "top" was mistakenly used in the code dealing with "left" constraint. Thanks to Coverity for finding this one. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73146 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index cd24e50ed0..8c987ef135 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -2263,7 +2263,7 @@ void wxWindowBase::UnsetConstraints(wxLayoutConstraints *c) { if ( c ) { - if ( c->left.GetOtherWindow() && (c->top.GetOtherWindow() != this) ) + if ( c->left.GetOtherWindow() && (c->left.GetOtherWindow() != this) ) c->left.GetOtherWindow()->RemoveConstraintReference(this); if ( c->top.GetOtherWindow() && (c->top.GetOtherWindow() != this) ) c->top.GetOtherWindow()->RemoveConstraintReference(this);