mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 06:51:44 +00:00
Minor tidyup for new Objective-C runtimes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@31786 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f80e259048
commit
05820e79ac
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-12-27 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* Source/NSGraphicsContext.m ([-subclassResponsibility:]): Use
|
||||
sel_getName instead of sel_get_name.
|
||||
|
||||
2010-12-27 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* Source/NSBezierPath.m ([-encodeWithCoder:], [-initWithCoder:]):
|
||||
|
|
|
@ -759,7 +759,7 @@ NSGraphicsContext *GSCurrentContext(void)
|
|||
format: @"subclass %s(%s) should override %s",
|
||||
class_getName(object_getClass(self)),
|
||||
GSObjCIsInstance(self) ? "instance" : "class",
|
||||
sel_get_name(aSel)];
|
||||
sel_getName(aSel)];
|
||||
return nil;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue