Rename _nsbuttonCellClass to buttonCellClass and make it static.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@18455 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
alexm 2004-01-22 12:11:46 +00:00
parent 16ae722f99
commit cc898ba3a8
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2004-01-22 13:09 Alexander Malmberg <alexander@malmberg.org>
* Source/NSButton.m: Rename _nsbuttonCellClass to buttonCellClass
and make it static.
2004-01-22 13:06 Alexander Malmberg <alexander@malmberg.org> 2004-01-22 13:06 Alexander Malmberg <alexander@malmberg.org>
* Source/NSActionCell.m (-encodeWithCoder:): Encode nil instead of * Source/NSActionCell.m (-encodeWithCoder:): Encode nil instead of

View file

@ -36,7 +36,7 @@
// //
// class variables // class variables
// //
id _nsbuttonCellClass = nil; static id buttonCellClass = nil;
// //
// NSButton implementation // NSButton implementation
@ -60,12 +60,12 @@ id _nsbuttonCellClass = nil;
// //
+ (Class) cellClass + (Class) cellClass
{ {
return _nsbuttonCellClass; return buttonCellClass;
} }
+ (void) setCellClass: (Class)classId + (void) setCellClass: (Class)classId
{ {
_nsbuttonCellClass = classId; buttonCellClass = classId;
} }
// //