ObjFW  Diff

Differences From Artifact [a817ca083b]:

  • File utils/objfw-new/NewApp.m — part of check-in [d54804e886] at 2022-08-07 21:26:57 on branch trunk — Make GCC happy again It again fails to determine that code is unreachable and then complains about it using uninitialized variables. (user: js size: 1487) [more...]

To Artifact [47a07d5858]:

  • File utils/objfw-new/NewApp.m — part of check-in [204b27318f] at 2022-11-13 19:07:37 on branch trunk — Add OFApplicationDidFinishLaunchingNotification (user: js size: 1529) [more...]

44
45
46
47
48
49
50
51


52
53
54
55
56
57
58
44
45
46
47
48
49
50

51
52
53
54
55
56
57
58
59







-
+
+







			   @"\n"
			   @"@interface %@: OFObject <OFApplicationDelegate>\n"
			   @"@end\n"
			   @"\n"
			   @"OF_APPLICATION_DELEGATE(%@)\n"
			   @"\n"
			   @"@implementation %@\n"
			   @"- (void)applicationDidFinishLaunching\n"
			   @"- (void)applicationDidFinishLaunching: "
			   @"(OFNotification *)notification\n"
			   @"{\n"
			   @"	[OFApplication terminate];\n"
			   @"}\n"
			   @"@end\n",
			   name, name, name];

	[file close];