mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 03:40:39 +00:00
* 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:
parent
44153d95a4
commit
a9e9ebde19
3 changed files with 11 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
- (id) content;
|
||||
- (void) setContent: (id)content;
|
||||
- (Class) objectClass;
|
||||
- (void) setObjectClass: (Class)class;
|
||||
- (void) setObjectClass: (Class)aClass;
|
||||
|
||||
- (id) newObject;
|
||||
- (void) prepareContent;
|
||||
|
|
|
@ -99,9 +99,9 @@
|
|||
return _object_class;
|
||||
}
|
||||
|
||||
- (void) setObjectClass: (Class)class
|
||||
- (void) setObjectClass: (Class)aClass
|
||||
{
|
||||
_object_class = class;
|
||||
_object_class = aClass;
|
||||
}
|
||||
|
||||
- (id) newObject
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue