Updated for change in NSControl's ivar names

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5529 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
nico 1999-12-16 03:07:14 +00:00
parent 052e2c6d1c
commit f536e4bd7c
6 changed files with 129 additions and 130 deletions

View file

@ -59,56 +59,56 @@
- (void) setImage: (NSImage *)image
{
[cell setImage: image];
[self updateCell: cell];
[_cell setImage: image];
[self updateCell: _cell];
}
- (void) setImageAlignment: (NSImageAlignment)align
{
[cell setImageAlignment: align];
[self updateCell: cell];
[_cell setImageAlignment: align];
[self updateCell: _cell];
}
- (void) setImageScaling: (NSImageScaling)scaling
{
[cell setImageScaling: scaling];
[self updateCell: cell];
[_cell setImageScaling: scaling];
[self updateCell: _cell];
}
- (void) setImageFrameStyle: (NSImageFrameStyle)style
{
[cell setImageFrameStyle: style];
[self updateCell: cell];
[_cell setImageFrameStyle: style];
[self updateCell: _cell];
}
- (void) setEditable: (BOOL)flag
{
[cell setEditable: flag];
[_cell setEditable: flag];
}
- (NSImage *) image
{
return [cell image];
return [_cell image];
}
- (NSImageAlignment) imageAlignment
{
return [cell imageAlignment];
return [_cell imageAlignment];
}
- (NSImageScaling) imageScaling
{
return [cell imageScaling];
return [_cell imageScaling];
}
- (NSImageFrameStyle) imageFrameStyle
{
return [cell imageFrameStyle];
return [_cell imageFrameStyle];
}
- (BOOL) isEditable
{
return [cell isEditable];
return [_cell isEditable];
}
@end