mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-19 09:41:32 +08:00
Make OSX test application compatible with current 10.10 beta SDK
The NSApplication delegate was changed from a setDelegate/delegate method pair to a property, while the definition of NSApp didn't change (its type is id while the type should be NSApplication* or similar) Fixes jp9000/obs-studio#221
This commit is contained in:
+3
-3
@@ -165,11 +165,11 @@ static SceneContext SetupScene()
|
||||
int main()
|
||||
{
|
||||
@autoreleasepool {
|
||||
[NSApplication sharedApplication];
|
||||
NSApplication *app = [NSApplication sharedApplication];
|
||||
OBSTest *test = [[OBSTest alloc] init];
|
||||
[NSApp setDelegate:test];
|
||||
app.delegate = test;
|
||||
|
||||
[NSApp run];
|
||||
[app run];
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user