* Headers/AppKit/NSObjectController.h

* Source/NSObjectController.m: Changed "class" to "aClass" to 
	avoid issues with ObjC++ compilation in both the header and the
	.m file for consistency.  This change was suggested by Rob Burns
	and he provided a short patch via IRC.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25290 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2007-06-23 14:45:47 +00:00
parent 44153d95a4
commit a9e9ebde19
3 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2007-06-23 10:43-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* Headers/AppKit/NSObjectController.h
* Source/NSObjectController.m: Changed "class" to "aClass" to
avoid issues with ObjC++ compilation in both the header and the
.m file for consistency. This change was suggested by Rob Burns
and he provided a short patch via IRC.
2007-06-22 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSView.m: When setting frame and bounds, refrain from

View file

@ -57,7 +57,7 @@
- (id) content;
- (void) setContent: (id)content;
- (Class) objectClass;
- (void) setObjectClass: (Class)class;
- (void) setObjectClass: (Class)aClass;
- (id) newObject;
- (void) prepareContent;

View file

@ -99,9 +99,9 @@
return _object_class;
}
- (void) setObjectClass: (Class)class
- (void) setObjectClass: (Class)aClass
{
_object_class = class;
_object_class = aClass;
}
- (id) newObject