Commit e66e1855 authored by Felix Paul Kühne's avatar Felix Paul Kühne

osx dialog provider: minor cleanup

parent d04d6561
......@@ -39,19 +39,6 @@
defer:YES];
}
#define addButton( theButton, ox, oy, title, action ) \
s_rc.origin.x = ox; \
s_rc.origin.y = oy; \
s_rc.size.height = 32; \
s_rc.size.width = 108; \
theButton = [[NSButton alloc] initWithFrame:s_rc]; \
[theButton setButtonType:NSMomentaryLightButton]; \
[theButton setTitle:title]; \
[theButton setBordered:NO]; \
[theButton setTarget:self]; \
[theButton setAction:@selector(action:)]; \
[ourContentView addSubview:theButton]
- (void)createContentView
{
NSRect s_rc = [self frame];
......
......@@ -86,7 +86,6 @@ int OpenIntf(vlc_object_t *p_this)
memset(p_intf->p_sys,0,sizeof(*p_intf->p_sys));
// p_intf->b_should_run_on_first_thread = true;
p_intf->pf_run = Run;
msg_Dbg(p_intf,"Opening Mac OS X dialog provider");
......
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