Differences From Artifact [ad7af612fb]:
- File
src/OFApplication.h
— part of check-in
[37db8f0fb3]
at
2010-04-17 22:27:17
on branch trunk
— New ivar naming convention.
ivars are now named like this: thisIsAnIVar. If an accessor exists for
the ivar, the ivar is named like the accessor. This is required for
@property to work. (user: js, size: 2621) [annotate] [blame] [check-ins using]
To Artifact [f1232ecffb]:
- File src/OFApplication.h — part of check-in [f3e7291fad] at 2010-04-17 23:04:50 on branch trunk — Add properties to interfaces. Only used if supported by the compiler. (user: js, size: 2788) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 | */ @interface OFApplication: OFObject { OFString *programName; OFMutableArray *arguments; id delegate; } /** * \return The only OFApplication instance in the application */ + sharedApplication; /** | > > > > > > | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | */ @interface OFApplication: OFObject { OFString *programName; OFMutableArray *arguments; id delegate; } #ifdef OF_HAVE_PROPERTIES @property (readonly, retain) OFString *programName; @property (readonly, retain) OFArray *arguments; @property (retain) id delegate; #endif /** * \return The only OFApplication instance in the application */ + sharedApplication; /** |
︙ | ︙ |