* Source/NSSearchFieldCell.m: Correct issue displaying images for

search field.  Fix in initWithCoder: to reset image names.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28205 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
gcasa 2009-04-12 23:13:02 +00:00
parent aa8a27e064
commit 869bc003ff
2 changed files with 26 additions and 15 deletions

View file

@ -1,3 +1,8 @@
2009-04-12 15:11-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* Source/NSSearchFieldCell.m: Correct issue displaying images for
search field. Fix in initWithCoder: to reset image names.
2009-04-11 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSPopUpButtonCell.m (-_popUpItemAction:): New method used

View file

@ -425,6 +425,8 @@
{
self = [super initWithCoder: aDecoder];
if(self != nil)
{
if ([aDecoder allowsKeyedCoding])
{
[self setSearchButtonCell: [aDecoder decodeObjectForKey: @"NSSearchButtonCell"]];
@ -442,6 +444,10 @@
[aDecoder decodeValueOfObjCType: @encode(unsigned int) at: &_max_recents];
}
[self resetCancelButtonCell];
[self resetSearchButtonCell];
}
return self;
}