* Source/NSScrollView.m: Correct issue with tableviews when

loading nib files, corrected bug #24782.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27044 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-11-14 05:36:20 +00:00
parent ab5d2c1256
commit 32e9a3017a
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-11-14 00:40-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Source/NSScrollView.m: Correct issue with tableviews when
loading nib files, corrected bug #24782.
2008-11-13 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSView.m (-setBounds:, -setBoundsSize:, -setFrame:,
@ -67,7 +72,6 @@
* Source/NSPopUpButton.m (-keyDown): Trigger action only after
pressing the Space key.
>>>>>>> .r27016
2008-11-01 21:35-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* Source/NSWindow.m: Reverted a previous change to miniaturize.

View file

@ -1519,7 +1519,9 @@ static float scrollerWidth;
[content setFrame: frame];
}
// reset the content view...
[self setContentView: content];
_contentView = content;
}
if (hScroller != nil && _hasHorizScroller)