ObjFW  Check-in [db16146ca3]

Overview
Comment:Messaging nil allows this to be shortened.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: db16146ca3207aba9a2da2ce50f60f935d96a59cd0558df4eabaf12ff43c48d7
User & Date: js on 2010-10-05 19:37:23
Other Links: manifest | tags
Context
2010-10-05
19:52
Use ${LN_S} instead of ln -s. check-in: 4da2b3bcf0 user: js tags: trunk
19:37
Messaging nil allows this to be shortened. check-in: db16146ca3 user: js tags: trunk
19:36
Small fix in tests' Makefile. check-in: b04c382563 user: js tags: trunk
Changes

Modified src/OFApplication.m from [4cc1491a54] to [25c84d10d2].

37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57

	[delegate applicationWillTerminate];
}

int
of_application_main(int argc, char *argv[], Class cls)
{
	OFApplication *app;
	id <OFApplicationDelegate> delegate = nil;

	if (cls != Nil)
		delegate = [[cls alloc] init];

	app = [OFApplication sharedApplication];

	[app setArgumentCount: argc
	    andArgumentValues: argv];

	[app setDelegate: delegate];
	[(id)delegate release];








|
|
<
<
<
<
<







37
38
39
40
41
42
43
44
45





46
47
48
49
50
51
52

	[delegate applicationWillTerminate];
}

int
of_application_main(int argc, char *argv[], Class cls)
{
	OFApplication *app = [OFApplication sharedApplication];
	id <OFApplicationDelegate> delegate = [[cls alloc] init];






	[app setArgumentCount: argc
	    andArgumentValues: argv];

	[app setDelegate: delegate];
	[(id)delegate release];