diff --git a/ChangeLog b/ChangeLog index d290c531c..7deee4759 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-03-11 Doug Simons + + * Source/NSClipView.m: Call isFlipped rather than accessing + flag directly (fixes a problem with view loaded from a nib). + 2010-03-11 Wolfgang Lux * Source/NSCell.m (-_drawEditorWithFrame:inView:): Fix some diff --git a/Source/NSClipView.m b/Source/NSClipView.m index 3729f1749..326364081 100644 --- a/Source/NSClipView.m +++ b/Source/NSClipView.m @@ -700,7 +700,7 @@ static inline NSRect integralRect (NSRect rect, NSView *view) - (BOOL) isFlipped { - return (_documentView != nil) ? _documentView->_rFlags.flipped_view : NO; + return (_documentView != nil) ? [_documentView isFlipped] : NO; } /* Disable rotation of clip view */