File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change 30
30
proxy->defineCFunc (" objc_makeSmalltalk" , gst_makeSmalltalk);
31
31
proxy->defineCFunc (" objc_retain" , gst_retain);
32
32
proxy->defineCFunc (" objc_release" , gst_release);
33
- proxy->defineCFunc (" objc_installSuspendLoop" , gst_installSuspendLoop);
34
- proxy->defineCFunc (" objc_installEventLoop" , gst_installEventLoop);
33
+ proxy->defineCFunc (" objc_installEventLoop" , gst_installEventLoop);
35
34
proxy->defineCFunc (" gstRectFill" , gst_rectFill);
36
35
pool = [[NSAutoreleasePool alloc ] init ];
37
36
NSLog (@" Load complete" );
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ Object subclass: ObjcApplication [
21
21
]
22
22
23
23
loadNibNamed: aName [
24
- nsApp inspect.
25
24
NSBundle loadNibNamed: aName owner: nsApp.
26
25
]
27
26
@@ -52,14 +51,6 @@ Object subclass: ObjcApplication [
52
51
]
53
52
54
53
run [
55
- |pool |
56
- nsApp setRunning.
57
- nsApp setLaunched.
58
- pool := NSAutoreleasePool alloc init.
59
- nsApp finishLaunching.
60
- pool drain.
61
- " dispLoop := [[self dispatchLoop] whileTrue] forkAt: Processor userSchedulingPriority."
62
- loop := [[self pollEvent] whileTrue] forkAt: Processor highIOPriority.
63
- [(Delay forSeconds: 10000 ) wait] whileTrue
54
+ ObjcRuntime objcInstallEventLoop
64
55
]
65
56
]
You can’t perform that action at this time.
0 commit comments