Commit 7a01e29a authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

macosx: use NSInvocation on this 10.5 method.

parent c86ee9a0
......@@ -44,12 +44,26 @@
- (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
{
if(MACOS_VERSION < 10.5f)
return [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
windowStyle ^= NSTexturedBackgroundWindowMask;
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
[self setContentBorderThickness:32.0 forEdge:NSMinYEdge];
{
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
} else {
SEL theSelector;
NSMethodSignature *aSignature;
NSInvocation *anInvocation;
float f_value = 32.0f;
NSRectEdge ouredge = NSMinYEdge;
windowStyle ^= NSTexturedBackgroundWindowMask;
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
theSelector = @selector(setContentBorderThickness:forEdge:);
aSignature = [VLCEmbeddedWindow instanceMethodSignatureForSelector:theSelector];
anInvocation = [NSInvocation invocationWithMethodSignature:aSignature];
[anInvocation setSelector:theSelector];
[anInvocation setTarget:self];
[anInvocation setArgument:&f_value atIndex:2]; /* FIXME it's actually CGFLoat */
[anInvocation setArgument:&ouredge atIndex:3];
}
return self;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment