mark EOFault and GDL2KVCNSObject classes as root classes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@36233 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
buzzdee 2013-03-02 14:37:25 +00:00
parent 95d5d66287
commit d3e8af19e5
3 changed files with 13 additions and 2 deletions

View file

@ -19,6 +19,9 @@
* GDL2Palette/DisplayGroupInspector.m
some NS(U)Integer transitions to fix warnings about
comparisons against NSNotFound
* EOControl/EOKeyValueCoding.m
* EOControl/EOFault.h
mark EOFault and GDL2KVCNSObject classes as root classes
2013-03-01: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* EOControl/EODebug.m

View file

@ -48,7 +48,11 @@
* EOFault class
*/
#ifdef __has_attribute
#if __has_attribute(objc_root_class)
__attribute__((objc_root_class))
#endif
#endif
@interface EOFault
{
@public

View file

@ -92,7 +92,11 @@ initialize(void)
of efficiency, we don't use the do {} while (0) pattern. */
#define INITIALIZE if (!initialized) initialize();
#ifdef __has_attribute
#if __has_attribute(objc_root_class)
__attribute__((objc_root_class))
#endif
#endif
@interface GDL2KVCNSObject
@end
@interface GDL2KVCNSObject (NSKeyValueCoding) <NSObject>