[wx-dev] wxMac: Revision 51785 breaks wxUpdateUIEvent

Stefan Csomor csomor at advancedconcepts.ch
Mon Feb 25 10:01:45 PST 2008


Hi

> Revision  51921, 2.8 branch:
> 
> 
> bool wxWindowBase::IsShownOnScreen() const
> {
>      return IsShown() &&
>             (GetParent() == NULL || GetParent()->IsShownOnScreen());
> }

while in trunk it reads

return IsShown() &&
  (IsTopLevel() || GetParent() == NULL ||  GetParent()->IsShownOnScreen());

which IMHO is the way it should be ....

Best,

Stefan







More information about the wx-dev mailing list