Differences From Artifact [cbba891989]:
- File
src/OFApplication.m
— 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: 2392) [annotate] [blame] [check-ins using]
To Artifact [e8b77ada50]:
- File src/OFApplication.m — part of check-in [400552fa28] at 2010-04-18 00:08:03 on branch trunk — Require overriding of -[applicationDidFinishLaunching]. (user: js, size: 2498) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #include <stdlib.h> #import "OFApplication.h" #import "OFArray.h" #import "OFString.h" #import "OFAutoreleasePool.h" OFApplication *app = nil; static void atexit_handler() { id delegate = [app delegate]; | > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #include <stdlib.h> #import "OFApplication.h" #import "OFArray.h" #import "OFString.h" #import "OFAutoreleasePool.h" #import "OFExceptions.h" OFApplication *app = nil; static void atexit_handler() { id delegate = [app delegate]; |
︙ | ︙ | |||
151 152 153 154 155 156 157 158 159 160 161 162 163 | [super dealloc]; } @end @implementation OFObject (OFApplicationDelegate) - (void)applicationDidFinishLaunching { } - (void)applicationWillTerminate { } @end | > > | 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | [super dealloc]; } @end @implementation OFObject (OFApplicationDelegate) - (void)applicationDidFinishLaunching { @throw [OFNotImplementedException newWithClass: isa selector: _cmd]; } - (void)applicationWillTerminate { } @end |