ObjFW  Diff

Differences From Artifact [e225bd8cdc]:

To Artifact [e32044da23]:


295
296
297
298
299
300
301
302

303
304

305
306
307
308
309
310
311
295
296
297
298
299
300
301

302
303

304
305
306
307
308
309
310
311







-
+

-
+







}

- (void)run
{
	void *pool;
	OFRunLoop *runLoop;

	[OFThread _createMainThread];
	[OFThread OF_createMainThread];
	runLoop = [OFRunLoop currentRunLoop];
	[OFRunLoop _setMainRunLoop];
	[OFRunLoop OF_setMainRunLoop];

	pool = objc_autoreleasePoolPush();
	[delegate applicationDidFinishLaunching];
	objc_autoreleasePoolPop(pool);

	[runLoop run];
}