]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Define wxLongLong_t for Intel compiler.
[wxWidgets.git] / src / common / wincmn.cpp
index 1601d08e42814253340bcc7730db665e60069ba1..787d08b13f8eddff990b6dd5c2979f413cddd6fc 100644 (file)
@@ -2610,6 +2610,8 @@ void wxWindowBase::SetConstraintSizes(bool recurse)
     wxLayoutConstraints *constr = GetConstraints();
     if ( constr && constr->AreSatisfied() )
     {
+        ChildrenRepositioningGuard repositionGuard(this);
+
         int x = constr->left.GetValue();
         int y = constr->top.GetValue();
         int w = constr->width.GetValue();
@@ -3368,7 +3370,7 @@ bool wxWindowBase::TryAfter(wxEvent& event)
             wxWindow *parent = GetParent();
             if ( parent && !parent->IsBeingDeleted() )
             {
-                wxPropagateOnce propagateOnce(event);
+                wxPropagateOnce propagateOnce(event, this);
 
                 return parent->GetEventHandler()->ProcessEvent(event);
             }